diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a413b5b8a27c855e77492e31b06ca781adb67e2..8d6a22a6051d009be01331c04e7705da98f71661 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