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

Fix regex pattern in .gitlab-ci.yml

The regular expression pattern for the coverage line in the .gitlab-ci.yml file was not properly formatted. It was causing issues in the CI pipeline as it couldn't correctly parse the coverage percentage. This commit wraps the expression in single quotes to correct this issue.
parent 093a9b76
No related branches found
No related tags found
1 merge request!31Resolve "More test coverage"
Pipeline #47484 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