Skip to content
Snippets Groups Projects
Commit f2f2c26f authored by Benedikt's avatar Benedikt
Browse files

Edit .gitlab-ci.yml

explicitly install pytest 
parent 2d1a77ea
No related branches found
No related tags found
No related merge requests found
Pipeline #51717 failed
...@@ -15,6 +15,7 @@ variables: ...@@ -15,6 +15,7 @@ variables:
- git checkout "$CI_COMMIT_REF_NAME" - git checkout "$CI_COMMIT_REF_NAME"
script: script:
- pip install .[testing] - pip install .[testing]
- pip install pytest pytest-cov # Explicitly install testing deps
- pytest --cov --cov-report term-missing --cov-report xml:coverage.xml --cov-report html:cov_html - pytest --cov --cov-report term-missing --cov-report xml:coverage.xml --cov-report html:cov_html
- ls -la ./ - ls -la ./
coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment