Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ END_UNRELEASED_TEMPLATE
([#1975](https://github.com/bazel-contrib/rules_python/issues/1975))
* (uv) automatically pass the `--project` parameter based on the source files.
([#3087](https://github.com/bazel-contrib/rules_python/issues/3087))
* (coverage) handle nested coverage collection
([#3823](https://github.com/bazel-contrib/rules_python/pull/3823))

{#v0-0-0-added}
### Added
Expand Down
2 changes: 1 addition & 1 deletion python/private/stage2_bootstrap_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def _maybe_collect_coverage(enable):
yield
finally:
cov.stop()
lcov_path = os.path.join(coverage_dir, "pylcov.dat")
lcov_path = os.path.join(coverage_dir, "pylcov_{}.dat".format(unique_id))
print_verbose_coverage("generating lcov from:", lcov_path)
cov.lcov_report(
outfile=lcov_path,
Expand Down