Skip to content
Snippets Groups Projects
Commit 33de57eb authored by Valentin Emiya's avatar Valentin Emiya
Browse files

add test for 3.7 and 3.8

parent a8f4f1a2
No related branches found
No related tags found
No related merge requests found
Pipeline #14361 failed
......@@ -41,6 +41,32 @@ stages:
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
install_and_test_37:
image: python:3.7
stage: test
script:
- pip3 install -e . --no-deps
- python3 -m pytest
artifacts:
when: always
untracked: true
paths:
- build
expire_in: 8d
install_and_test_38:
image: python:3.8
stage: test
script:
- pip3 install -e . --no-deps
- python3 -m pytest
artifacts:
when: always
untracked: true
paths:
- build
expire_in: 8d
install_and_test_39:
image: python:3.9
stage: test
......
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