Skip to content
Snippets Groups Projects
Commit 0e7746e9 authored by Florian Schröder's avatar Florian Schröder
Browse files

Update pytest command in GitLab CI configuration

The pytest command in the .gitlab-ci.yml file has been updated to remove redundant output. Previously, the command specified both `term` and `xml:coverage.xml` for `--cov-report`, but now it only includes `xml:coverage.xml` to simplify the report generation.
parent 4920a85a
No related branches found
No related tags found
1 merge request!31Resolve "More test coverage"
Pipeline #47471 failed
...@@ -5,7 +5,7 @@ pytest: ...@@ -5,7 +5,7 @@ pytest:
- apt-get install -y python3-dev python3-pip graphviz graphviz-dev - apt-get install -y python3-dev python3-pip graphviz graphviz-dev
- pip install pytest - pip install pytest
- pip install . - pip install .
- pytest --cov --cov-report term --cov-report xml:coverage.xml - pytest --cov --cov-report xml:coverage.xml
coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
artifacts: artifacts:
reports: reports:
......
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