From f0325f9a308ff3980bac5fb91749507a09534bc4 Mon Sep 17 00:00:00 2001
From: msimonin <matthieu.simonin@inria.fr>
Date: Tue, 20 Apr 2021 12:00:49 +0200
Subject: [PATCH] ci

---
 .gitlab-ci.yml | 31 ++++++++++++++++++++++---------
 tox.ini        |  1 -
 2 files changed, 22 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fd4eff3..fa0835c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,28 +3,41 @@
 # https://hub.docker.com/r/library/python/tags/
 image: python:3.6
 
-python3.5:
-    image: python:3.5
+python3.6:
+    image: python:3.6
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
-    - tox -e py35
+    - tox -e py36
     - tox -e pep8
 
-python3.6:
-    image: python:3.6
+python3.7:
+    image: python:3.7
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
-    - tox -e py36
+    - tox -e py37
+    - tox -e pep8
+
+python3.8:
+    image: python:3.8
+    stage: test
+    script:
+    - pip install tox
+    - tox -e py37
+    - tox -e pep8
+
+python3.9:
+    image: python:3.9
+    stage: test
+    script:
+    - pip install tox
+    - tox -e py37
     - tox -e pep8
 
 python2.7:
     image: python:2.7
     stage: test
-    tags: [qlf-ci.inria.fr]
     script:
     - pip install tox
     - tox -e py27 pep8
diff --git a/tox.ini b/tox.ini
index 0a34650..2c7dc41 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,4 +1,3 @@
-# tox -epy27
 [tox]
 skipsdist = True
 envlist = pep8
-- 
GitLab