Skip to content
Snippets Groups Projects
Verified Commit 5f32eb3c authored by David Runge's avatar David Runge :chipmunk:
Browse files

Include files for coverage instead of omitting others

pyproject.toml:
Use specific include for files to use in the coverage report instead of
relying on a list of omitted files (which may grow over time and not
cover all use-cases).
parent 6db2d0d2
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ exclude = ''' ...@@ -21,7 +21,7 @@ exclude = '''
source = ["libkeyringctl"] source = ["libkeyringctl"]
[tool.coverage.report] [tool.coverage.report]
omit = ["tests/*", ".tox/*"] include = ["libkeyringctl/*", "keyringctl"]
precision = 2 precision = 2
show_missing = true show_missing = true
......
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