xonsh/.coveragerc

30 lines
557 B
Text
Raw Normal View History

2016-07-15 09:34:13 +02:00
[run]
branch = true
2017-01-31 17:10:40 +02:00
source =
xonsh/
2019-08-04 12:19:05 +10:00
xontrib/
2016-07-15 09:34:13 +02:00
omit =
.venv/*
2017-01-31 17:10:40 +02:00
*/__amalgam__.py
xonsh/lazyasd.py
xonsh/parser_table.py
2017-01-29 16:05:55 +02:00
xonsh/ply/*
# keep all cache files in one place
data_file = .cache/coverage
# https://stackoverflow.com/questions/42721896/coverage-in-parallel-for-django-tests
# when run with xdist - but append mode will not work
#concurrency = multiprocessing
#parallel = true
[report]
precision = 2
exclude_lines =
pragma: no cover
raise NotImplementedError
skip_covered = true
skip_empty = true
show_missing = true
sort = Cover