Skip to content
Snippets Groups Projects
Commit b98d3cff authored by Moul's avatar Moul
Browse files

[ci] #118: Add tests jobs for Python from v3.6 to v3.9

- Extend test job by changing PYTHON_VERSION
- Splitted among two runners
- Rename stage
parent 61a67c91
No related branches found
No related tags found
No related merge requests found
stages: stages:
- format - format
- test - tests
- build - build
- release - release
- publish_doc - publish_doc
...@@ -48,18 +48,40 @@ format: ...@@ -48,18 +48,40 @@ format:
script: script:
- make check-format - make check-format
test: .tests:
extends: extends: .changes
- .changes stage: tests
stage: test image: $DOCKER_IMAGE/$PYTHON_VERSION:latest
script: script:
- poetry install --no-dev - poetry install --no-dev
- make tests - make tests
tests-3.6:
extends: .tests
tags: [poetry-56]
variables:
PYTHON_VERSION: "3.6"
tests-3.7:
extends: .tests
tags: [poetry-78]
variables:
PYTHON_VERSION: "3.7"
tests-3.8:
extends: .tests
tags: [poetry-78]
PYTHON_VERSION: "3.8"
tests-3.9:
extends: .tests
tags: [poetry-56]
variables:
check: check:
extends: extends:
- .changes - .changes
stage: test stage: tests
script: script:
- poetry install - poetry install
- make mypy - make mypy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment