Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TypedCols
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
713
Warden
TypedCols
Merge requests
!6
0.1.14
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
0.1.14
devel
into
master
Overview
1
Commits
19
Pipelines
7
Changes
7
Merged
Rajmund Hruška
requested to merge
devel
into
master
2 years ago
Overview
1
Commits
19
Pipelines
7
Changes
7
Expand
0
0
Merge request reports
Compare
master
version 6
70e2f1ec
2 years ago
version 5
e2ed7a38
2 years ago
version 4
2a237cfa
2 years ago
version 3
c90b030b
2 years ago
version 2
48f46b9f
2 years ago
version 1
844336ea
2 years ago
master (base)
and
latest version
latest version
78d9ab19
19 commits,
2 years ago
version 6
70e2f1ec
18 commits,
2 years ago
version 5
e2ed7a38
14 commits,
2 years ago
version 4
2a237cfa
13 commits,
2 years ago
version 3
c90b030b
11 commits,
2 years ago
version 2
48f46b9f
9 commits,
2 years ago
version 1
844336ea
7 commits,
2 years ago
7 files
+
121
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
74
−
4
Options
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:
3.6
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:
latest
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
@@ -15,7 +15,6 @@ variables:
cache
:
paths
:
-
.cache/pip
-
venv/
before_script
:
-
pip install virtualenv
@@ -26,14 +25,57 @@ before_script:
stages
:
# List of stages for jobs, and their order of execution
-
test
-
check-warnings
-
build
-
deploy
unit-test-job
:
unit-test-job
:
stage
:
test
script
:
-
make test 2>&1 | tee errors.log
artifacts
:
when
:
always
paths
:
-
errors.log
reports
:
junit
:
nose2-junit.xml
unit-test-2.7-job
:
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:2.7
stage
:
test
script
:
-
make test
unit-test-3.7-job
:
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:3.7
stage
:
test
script
:
-
make test 2>&1 | tee errors-3.7.log
artifacts
:
when
:
always
paths
:
-
errors-3.7.log
unit-test-3.8-job
:
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:3.8
stage
:
test
script
:
-
make test 2>&1 | tee errors-3.8.log
artifacts
:
when
:
always
paths
:
-
errors-3.8.log
unit-test-3.9-job
:
image
:
${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/python:3.9
stage
:
test
script
:
-
make test 2>&1 | tee errors-3.9.log
artifacts
:
when
:
always
paths
:
-
errors-3.9.log
pylint-test-job
:
stage
:
test
script
:
@@ -44,6 +86,34 @@ pyflakes-test-job:
script
:
-
make pyflakes
check-deprecation-warnings
:
before_script
:
[]
stage
:
check-warnings
script
:
-
"
if
[[
$(grep
DeprecationWarning
errors.log)
]];
then
cat
errors.log;
exit
1;
fi"
allow_failure
:
true
check-deprecation-warnings-3.7
:
before_script
:
[]
stage
:
check-warnings
script
:
-
"
if
[[
$(grep
DeprecationWarning
errors-3.7.log)
]];
then
cat
errors-3.7.log;
exit
1;
fi"
allow_failure
:
true
check-deprecation-warnings-3.8
:
before_script
:
[]
stage
:
check-warnings
script
:
-
"
if
[[
$(grep
DeprecationWarning
errors-3.8.log)
]];
then
cat
errors-3.8.log;
exit
1;
fi"
allow_failure
:
true
check-deprecation-warnings-3.9
:
before_script
:
[]
stage
:
check-warnings
script
:
-
"
if
[[
$(grep
DeprecationWarning
errors-3.9.log)
]];
then
cat
errors-3.9.log;
exit
1;
fi"
allow_failure
:
true
build-job
:
stage
:
build
script
:
@@ -105,4 +175,4 @@ pages:
-
public
only
:
-
master
-
devel
\ No newline at end of file
-
devel
Loading