From 48998e3dcc4f03d3c861b963685e2b1ec2873a05 Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Wed, 27 Mar 2019 12:59:07 +0100 Subject: [PATCH] testing with py3.4 and rc (3.8 for now) --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d3da5e..3ed5079 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,13 @@ image: docker:latest stages: - test +test34: + stage: test + image: python:3.4 + script: + - pip install -r requirements.txt + - coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m + test35: stage: test image: python:3.5 @@ -23,3 +30,10 @@ test37: script: - pip install -r requirements.txt - coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m + +testrc: + stage: test + image: python:rc + script: + - pip install -r requirements.txt + - coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m -- GitLab