Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pydgets
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
713
Mentat
Pydgets
Compare revisions
7fa5b0148c9d496648b45fcb697495dffc9dc5d1 to a095d9759397d738cbe1a0aadda4005f66f53f3a
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
713/mentat/pydgets
Select target project
No results found
a095d9759397d738cbe1a0aadda4005f66f53f3a
Select Git revision
Branches
devel
master
2 results
Swap
Target
713/mentat/pydgets
Select target project
713/mentat/pydgets
1 result
7fa5b0148c9d496648b45fcb697495dffc9dc5d1
Select Git revision
Branches
devel
master
2 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Use multiple python versions for testing
· 3d9cd4ca
Rajmund Hruška
authored
3 years ago
3d9cd4ca
Merge branch 'hruska-feature-multiple-python-versions' into 'devel'
· a095d975
Rajmund Hruška
authored
3 years ago
Use multiple python versions for testing See merge request 709/mentat/pydgets!4
a095d975
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+52
-1
52 additions, 1 deletion
.gitlab-ci.yml
requirements-dev.pip
+4
-4
4 additions, 4 deletions
requirements-dev.pip
with
56 additions
and
5 deletions
.gitlab-ci.yml
View file @
a095d975
# 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.
...
...
@@ -41,6 +41,36 @@ unit-test-job:
reports
:
junit
:
nose2-junit.xml
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
:
...
...
@@ -58,6 +88,27 @@ check-deprecation-warnings:
-
"
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
:
...
...
This diff is collapsed.
Click to expand it.
requirements-dev.pip
View file @
a095d975
...
...
@@ -3,7 +3,7 @@ wheel
twine
docutils<0.18
nose2
pyflakes
==2.1.0
pylint
==2.2.2
sphinx
==1.8.4
sphinx-rtd-theme
==0.4.2
pyflakes
pylint
sphinx
sphinx-rtd-theme
This diff is collapsed.
Click to expand it.