Skip to content
Snippets Groups Projects
Commit 232c4299 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

migrating test to use manage.py

parent fd5bbcd5
No related branches found
No related tags found
No related merge requests found
...@@ -8,25 +8,25 @@ test35: ...@@ -8,25 +8,25 @@ test35:
image: python:3.5 image: python:3.5
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m - coverage run --source='basetheme_bootstrap' manage.py test && coverage report -m
test36: test36:
stage: test stage: test
image: python:3.6 image: python:3.6
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m - coverage run --source='basetheme_bootstrap' manage.py test && coverage report -m
test37: test37:
stage: test stage: test
image: python:3.7 image: python:3.7
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m - coverage run --source='basetheme_bootstrap' manage.py test && coverage report -m
testrc: testrc:
stage: test stage: test
image: python:rc image: python:rc
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- coverage run --source='basetheme_bootstrap' runtests.py && coverage report -m - coverage run --source='basetheme_bootstrap' manage.py test && coverage report -m
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