Skip to content
Snippets Groups Projects
Commit 416b851f authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

correct call to python version-specific calls in CI tasks

parent 9c8178be
No related branches found
No related tags found
No related merge requests found
...@@ -25,21 +25,21 @@ test-python35: ...@@ -25,21 +25,21 @@ test-python35:
stage: test stage: test
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- python manage.py test - python setup.py test
test-python36: test-python36:
image: python:3.6 image: python:3.6
stage: test stage: test
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- python manage.py test - python setup.py test
test-python37: test-python37:
image: python:3.7 image: python:3.7
stage: test stage: test
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- python manage.py test - python setup.py test
pages: pages:
image: centos:centos7 image: centos:centos7
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment