File: .coveragerc

package info (click to toggle)
python-userpath 1.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 771; makefile: 21; sh: 16
file content (28 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (4)
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
[run]
data_file = tests/coverage/.coverage
branch = True
parallel = True
source =
    userpath
    tests
omit =
    userpath/__main__.py
    userpath/cli.py

[paths]
userpath =
   userpath
   /home/userpath/userpath
   c:\*\userpath\userpath
tests =
   tests
   /home/userpath/tests
   c:\*\userpath\tests

[report]
exclude_lines =
    no cov
    no qa
    noqa
    pragma: no cover
    if __name__ == .__main__.: