We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65959fc commit fdc43ecCopy full SHA for fdc43ec
2 files changed
docs/plugins.rst
@@ -14,9 +14,9 @@ Alternatively you can have this in ``tox.ini`` (if you're using `Tox <https://to
14
15
[testenv]
16
setenv =
17
- COV_CORE_SOURCE={toxinidir}/src
+ COV_CORE_SOURCE=
18
COV_CORE_CONFIG={toxinidir}/.coveragerc
19
- COV_CORE_DATAFILE={toxinidir}/.coverage.eager
+ COV_CORE_DATAFILE={toxinidir}/.coverage
20
21
And in ``pytest.ini`` / ``tox.ini`` / ``setup.cfg``::
22
src/pytest_cov/embed.py
@@ -53,7 +53,7 @@ def init():
53
import coverage
54
55
# Determine all source roots.
56
- if cov_source == os.pathsep:
+ if cov_source in os.pathsep:
57
cov_source = None
58
else:
59
cov_source = cov_source.split(os.pathsep)
0 commit comments