We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--cov-precision
When you configure the following in pyproject.toml:
pyproject.toml
[tool.coverage.report] precision = 2
you get the output:
Name Stmts Miss Cover ---------------------------------------- mypkg/__init__.py 0 0 100.00% mypkg/bar.py 4 4 0.00% mypkg/foo.py 2 2 0.00% ---------------------------------------- TOTAL 6 6 0.00%
However when you don't configure that and only use the recently introduced --cov-precision option you still get:
Name Stmts Miss Cover --------------------------------------- mypkg/__init__.py 0 0 100% mypkg/bar.py 4 4 0% mypkg/foo.py 2 2 0% --------------------------------------- TOTAL 6 6 0%
That is the --cov-precision option doesn't affect the generated reports at all.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When you configure the following in
pyproject.toml
:you get the output:
However when you don't configure that and only use the recently introduced
--cov-precision
option you still get:That is the
--cov-precision
option doesn't affect the generated reports at all.The text was updated successfully, but these errors were encountered: