You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `pytest-cov` plugin is used to gather test coverage info, using the
`coverage` tool.
It suffers from a limitation where child processes created by tests do
not inherit the `coverage` configuration from `pyproject.toml` because
that file is not on the command line.
This limitation is described here
nedbat/coveragepy#512
With the introduction of LSP, we started encountering crashes when
collecting coverage data, because LSP launches a child process.
The solution is to move `coverage` configuration into a dedicated
`.coveragerc` file.
This PR does just that.
Fixes#1363
Co-authored-by: Guenia Izquierdo Delgado <[email protected]>
0 commit comments