Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
magic-wormhole/.coveragerc
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (20 sloc)
697 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: conf -*- | |
[run] | |
# only record trace data for wormhole.* | |
source = | |
wormhole | |
# and don't trace the test files themselves, or Versioneer's stuff | |
omit = | |
src/wormhole/test/* | |
src/wormhole/_version.py | |
# This allows 'coverage combine' to correlate the tracing data built while | |
# running tests in multiple tox virtualenvs. To take advantage of this | |
# properly, use "coverage erase" before tox, "coverage run --parallel-mode" | |
# inside tox to avoid overwriting the output data (by writing it into | |
# .coverage-XYZ instead of just .coverage), and run "coverage combine" | |
# afterwards. | |
[paths] | |
source = | |
src/ | |
.tox/*/lib/python*/site-packages/ | |
.tox/pypy*/site-packages/ |