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
Originally reported by Anonymous
Eg: a = 1 if b == c else 2 is not registering any missing branches.
a = 1 if b == c else 2
The text was updated successfully, but these errors were encountered:
Original comment by Ionel Cristian Mărieș (Bitbucket: ionelmc, GitHub: ionelmc)
Ah dooh! I forgot to log in 😬
Sorry, something went wrong.
Coverage works with the information from sys.settrace, which is line-based. It has no way to get information within a line.
Long ago, I experimented with a way to get intra-line information, but it is just a wild hack, not something that can be used for real yet: http://nedbatchelder.com/blog/200804/wicked_hack_python_bytecode_tracing.html
This is another flavor of #292.
Duplicate of #292.
No branches or pull requests
Originally reported by Anonymous
Eg:
a = 1 if b == c else 2
is not registering any missing branches.The text was updated successfully, but these errors were encountered: