From 416b851f0a6cbce17e05b33422bab1a969c28c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Thu, 26 Sep 2019 16:22:49 +0200 Subject: [PATCH] correct call to python version-specific calls in CI tasks --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a413b5b..8d6a22a6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,21 +25,21 @@ test-python35: stage: test script: - pip install -r requirements.txt - - python manage.py test + - python setup.py test test-python36: image: python:3.6 stage: test script: - pip install -r requirements.txt - - python manage.py test + - python setup.py test test-python37: image: python:3.7 stage: test script: - pip install -r requirements.txt - - python manage.py test + - python setup.py test pages: image: centos:centos7 -- GitLab