tahoe-lafs/.coveragerc

30 lines
855 B
Plaintext
Raw Normal View History

# -*- mode: conf -*-
[run]
# only record trace data for allmydata.*
source =
allmydata
# and don't trace the test files themselves, or generated files
omit =
*/allmydata/test/*
*/allmydata/_version.py
2019-07-23 16:39:45 +00:00
parallel = True
branch = True
[report]
show_missing = True
skip_covered = True
[paths]
source =
# It looks like this in the checkout
src/
# It looks like this in the Windows build environment
D:/a/tahoe-lafs/tahoe-lafs/.tox/py27-coverage/Lib/site-packages/
2020-10-14 17:09:06 +00:00
# Although sometimes it looks like this instead. Also it looks like this on macOS.
.tox/py27-coverage/lib/python2.7/site-packages/
# On some Linux CI jobs it looks like this
/tmp/tahoe-lafs.tox/py27-coverage/lib/python2.7/site-packages/
2020-10-14 17:09:12 +00:00
# On the Python 3 CI job it's more like this of course:
/tmp/tahoe-lafs.tox/py36-coverage/lib/python3.6/site-packages/