summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 7959fd8a54a8d1e73621f6d88de161c185f3c04c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[run]
source =
    warlock
omit =
    tests/*
    venv/*

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError

    # Don't complain if non-runnable code isn't run:
    if __name__ == .__main__.: