From d62cb40acdebe689a85b33b4bffb0b90816da91f Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Fri, 9 Oct 2020 14:17:17 +0200 Subject: [PATCH] Test with Py3.8 and Py3.9 --- .gitlab-ci.yml | 10 +++++++++- tox.ini | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) 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