Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nicolas MAILLET
rpg
Commits
5e3428a6
Commit
5e3428a6
authored
Feb 01, 2021
by
Nicolas MAILLET
Browse files
Passing python 3.8 and 3.9
parent
4dd9b18e
Pipeline
#46988
passed with stages
in 1 minute and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
5e3428a6
...
...
@@ -2,6 +2,8 @@ stages:
-
py35
-
py36
-
py37
-
py38
-
py39
test-py3.5
:
image
:
python:3.5
stage
:
py35
...
...
@@ -20,3 +22,15 @@ test-py3.7:
script
:
-
pip3 install -r requirements.txt
-
python3.7 -m pytest --cov rpg tests
test-py3.8
:
image
:
python:3.8
stage
:
py38
script
:
-
pip3 install -r requirements.txt
-
python3.8 -m pytest --cov rpg tests
test-py3.9
:
image
:
python:3.9
stage
:
py39
script
:
-
pip3 install -r requirements.txt
-
python3.9 -m pytest --cov rpg tests
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment