File: .coveragerc

package info (click to toggle)
python-testfixtures 9.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,036 kB
  • sloc: python: 10,373; makefile: 76; sh: 9
file content (18 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[run]
source = testfixtures

[report]
exclude_lines = 
  # the original exclude
  pragma: no cover

  # code executed only when tests fail
  'No exception raised!'
  self\.fail\('Expected

  # example code that we don't want to cover with pragma statements
  guppy =

  if TYPE_CHECKING:

  \.\.\.