diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d3da5e55e1cb2d619ebdf48d436914e45a9b15b..3ed50791d2427e7eed76cf4cdd0dcadc1e93a326 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