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

Update coverage pattern in .gitlab-ci.yml file

The coverage pattern has been updated in the .gitlab-ci.yml file. The change made was to remove the special wildcard characters from the start of the regex pattern. This modification improves pattern recognition for the coverage report.
parent 6ba547f2
No related branches found
No related tags found
1 merge request!31Resolve "More test coverage"
Pipeline #47481 failed
......@@ -5,7 +5,7 @@ pytest:
- apt-get install -y python3-dev python3-pip graphviz graphviz-dev
- pip install '.[test]'
- pytest --cov --cov-report xml:coverage.xml
coverage: '*TOTAL.*\s+(\d+%)$*'
coverage: TOTAL.*\s+(\d+%)$
artifacts:
reports:
coverage_report:
......
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