fixed tests not working

This commit is contained in:
ajurna
2019-02-07 15:57:55 +00:00
parent 5d55eb3f04
commit f6976abf7e

View File

@@ -56,9 +56,10 @@ steps:
displayName: 'Run tests'
- script: |
pip install pytest
pip install pytest-cov
pytest tests --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
pip install coverage
coverage run --source='.' manage.py test
coverage xml
coverage html
displayName: 'Test with pytest'