From 5e3428a68b005b16ca14c9ce2d44ce80b063aca2 Mon Sep 17 00:00:00 2001
From: Nico Maillet <nicolas.maillet@pasteur.fr>
Date: Mon, 1 Feb 2021 11:55:14 +0100
Subject: [PATCH] Passing python 3.8 and 3.9

---
 .gitlab-ci.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31421d9..c84dbd3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,8 @@ stages:
   - py35
   - py36
   - py37
+  - py38
+  - py39
 test-py3.5:
   image: python:3.5
   stage: py35
@@ -20,3 +22,15 @@ test-py3.7:
   script:
   - pip3 install -r requirements.txt
   - python3.7 -m pytest --cov rpg tests
+test-py3.8:
+  image: python:3.8
+  stage: py38
+  script:
+  - pip3 install -r requirements.txt
+  - python3.8 -m pytest --cov rpg tests
+test-py3.9:
+  image: python:3.9
+  stage: py39
+  script:
+  - pip3 install -r requirements.txt
+  - python3.9 -m pytest --cov rpg tests
-- 
GitLab