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.
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
Move coverage configuration from setup.cfg to pyproject.toml.
setup.cfg
pyproject.toml
See feature here: nedbat/coveragepy#664
Figure out how to represent exclude_lines in the toml file, because toml has a structured syntax unlike setup.cfg.
exclude_lines
The text was updated successfully, but these errors were encountered:
Came across this issue while looking for a solution myself. This worked for me:
[tool.coverage.report] exclude_lines = [ "raise NotImplementedError", "def __repr__", "if __name__ == .__main__.:", ]
Sorry, something went wrong.
Thanks! Updated in branch add/api.
add/api
Completed.
jlubken
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Move coverage configuration from
setup.cfg
topyproject.toml
.See feature here: nedbat/coveragepy#664
Figure out how to represent
exclude_lines
in the toml file, because toml has a structured syntax unlikesetup.cfg
.The text was updated successfully, but these errors were encountered: