1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
[html]
directory = .test-results/pytest/cov/
show_contexts = true
skip_covered = false
[paths]
source =
src/ansible_pygments
*/src/ansible_pygments
.tox/*/lib/python*/site-packages/ansible_pygments
[report]
skip_covered = true
show_missing = true
exclude_lines =
\#\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*return NotImplemented\b
^\s*raise$
^if __name__ == ['"]__main__['"]:$
[run]
branch = true
command_line = -m pytest
cover_pylib = false
parallel = true
relative_files = true
source =
ansible_pygments
tests
|