Skip to content

Commit a96907a

Browse files
committed
.coveragerc: use globs with includes
Apparently this caused missing coverage with pdb/pexpect tests.
1 parent 0dd4cb0 commit a96907a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.coveragerc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[run]
22
include =
3-
src/*
3+
*/src/*
44
testing/*
5-
.tox/*/lib/python*/site-packages/_pytest/*
6-
.tox/*/lib/python*/site-packages/pytest.py
7-
.tox\*\Lib\site-packages\_pytest\*
8-
.tox\*\Lib\site-packages\pytest.py
5+
*/lib/python*/site-packages/_pytest/*
6+
*/lib/python*/site-packages/pytest.py
7+
*\Lib\site-packages\_pytest\*
8+
*\Lib\site-packages\pytest.py
99
parallel = 1
1010
branch = 1
1111

1212
[paths]
1313
source = src/
14-
.tox/*/lib/python*/site-packages/
15-
.tox\*\Lib\site-packages\
14+
*/lib/python*/site-packages/
15+
*\Lib\site-packages\

0 commit comments

Comments
 (0)