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
Branches
Tags
1 merge request!23.7 to 3.10 compatibility
Pipeline #14361 failed
...@@ -41,6 +41,32 @@ stages: ...@@ -41,6 +41,32 @@ stages:
variables: variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" 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: install_and_test_39:
image: python:3.9 image: python:3.9
stage: test stage: test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment