We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef78355 commit 411a5ddCopy full SHA for 411a5dd
.github/workflows/ci.yml
@@ -58,7 +58,7 @@ jobs:
58
59
- name: Run unit tests with pytest
60
run: |
61
- pytest --pspec --cov=service --cov-fail-under=95 --disable-warnings
+ pytest --pspec --cov=service --cov-fail-under=95 --disable-warnings --cov-report=xml
62
env:
63
FLASK_APP: "wsgi:app"
64
DATABASE_URI: "postgresql+psycopg://postgres:pgs3cr3t@postgres:5432/testdb"
setup.cfg
@@ -47,6 +47,9 @@ exclude_lines =
47
if __name__ == .__main__.:
48
ignore_errors = true
49
50
+[coverage:xml]
51
+output=./coverage.xml
52
+
53
[coverage:html]
54
title = 'Test Coverage Report'
55
0 commit comments