Better code coverage from tests using subprocess
#7070
+1
−0
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.
In many tests we use
subprocessmodule to ensure isolation. Collecting code coverage from such tests requires additionalcoveragepyconfiguration, seehttps://coverage.readthedocs.io/en/7.11.0/config.html#run-patch
This is clearly important, as the coverage is increased by over 2% on this PR.
Follow-up to #7042.
(note: this is partially a fix for a regression from #7042. In earlier versions, the subprocess coverage was handled by
pytest-covplugin, but this support was dropped in the latest 7.0 version, in favour of a (more robust) support directly incoveragepy. See changelog for details: https://pytest-cov.readthedocs.io/en/latest/changelog.html#id1)