Closed seifertm closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 91.10%. Comparing base (
fb5422f
) to head (cd06de6
). Report is 20 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Nb: you could have also reenabled hidden file upload in the action with a flag
@Tinche Thanks for the review!
Before this PR, each tox environment created its own coverage file in the project root directory. They don't get overwritten either, so the developer has to clean up the files manually every now and then. I found this a bit annoying.
I considered the include-hidden-files
option for actions/upload-artifact, but I saw this as a chance to group the coverage files for each tox environment into a single folder to avoid messing up the file explorer for devs :)
Coverage writes reports to ".coverage" by default. The GitHub action "upload-artifact" no longer includes hidden files by default. This patch changes the coverage file name to a non-hidden file path.
This fixes the failing CI pipeline for pull requests.