-
-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
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
Lcov report improvements part 2 #1851
Merged
nedbat
merged 16 commits into
nedbat:master
from
MillionConcepts:lcov-report-improvements-2
Oct 2, 2024
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0f3b227
refactor: don't need this aux variable anymore
nedbat 9cc8fd0
feature: add arc_description method for #1850
nedbat e72cb37
[lcov] Refactor LcovReporter.lcov_file
zackw f45f2fa
[lcov] Improve reporting of branch destinations.
zackw 8c62e38
Implement function coverage reporting in lcov reports.
zackw db57977
[lcov] Ignore vacuous function regions.
zackw 13059ee
Adjust test expectations for lcov reports generated under PyPy 3.8.
zackw 837bc7e
Split up test_multiple_exit_branches into 3 tests exercising #1852.
zackw 228854a
add a fourth case to the tests for #1852
zackw d767721
Revise lcovreport.lcov_arcs using the new arc_description API.
zackw 24b21d1
fix: forgot to add arc_descriptions to Python filereporter
nedbat a6c26f2
refactor: make arc possibilities and arcs executed available
nedbat 77ee8f2
fix: executed_branch_arcs should limit itself to parsed possible arcs
nedbat b7d298a
Merge branch 'master' into lcov-report-improvements-2
zackw f90ef28
Use tests.helpers.xfail_pypy38 for lcov tests that fail with pypy 3.8.
zackw e6a79ae
tests: split xfail_pypy38 decorator into _older_ and _all_ variants
zackw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our coverage workflow is now failing due to this line, when running with version
7.6.3
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide us with a way to reproduce it? Failing that, can you add this line before the assert, and show us the output?
(this should have been on the assert line, my bad)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm seeing this same error too, but only in CI so far. I haven't been able to reproduce it locally so I can't put the
print()
line in either...