diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2106f26..6b0eb0c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,17 @@ stages: - test - quality-assurance +py38: + stage: test + image: python:3.8-alpine + before_script: + - apk add --no-cache libmagic + - pip install tox --no-cache-dir + script: tox -e py38 + py39: stage: test - image: python:3-alpine + image: python:3.9-alpine before_script: - apk add --no-cache libmagic - pip install tox --no-cache-dir diff --git a/tox.ini b/tox.ini index cee3f53..bb02e3c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] envlist = + py38 py39 linters