.coveragerc: use globs with includes

Apparently this caused missing coverage with pdb/pexpect tests.
This commit is contained in:
Daniel Hahler 2019-03-01 17:59:04 +01:00
parent 0dd4cb0f8f
commit a96907a9db
1 changed files with 7 additions and 7 deletions

View File

@ -1,15 +1,15 @@
[run]
include =
src/*
*/src/*
testing/*
.tox/*/lib/python*/site-packages/_pytest/*
.tox/*/lib/python*/site-packages/pytest.py
.tox\*\Lib\site-packages\_pytest\*
.tox\*\Lib\site-packages\pytest.py
*/lib/python*/site-packages/_pytest/*
*/lib/python*/site-packages/pytest.py
*\Lib\site-packages\_pytest\*
*\Lib\site-packages\pytest.py
parallel = 1
branch = 1
[paths]
source = src/
.tox/*/lib/python*/site-packages/
.tox\*\Lib\site-packages\
*/lib/python*/site-packages/
*\Lib\site-packages\