diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 26963b95b9b2279bb21a009332bcce72ac97d854..6e78291d4587102a380553bcb6071342039f792e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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