File: coveragerc

package info (click to toggle)
python-asdf 2.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,248 kB
  • sloc: python: 13,104; makefile: 125
file content (30 lines) | stat: -rw-r--r-- 608 bytes parent folder | download
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
[run]
source = {packagename}
omit =
   asdf/_astropy_init*
   asdf/conftest*
   asdf/cython_version*
   asdf/setup_package*
   asdf/*/setup_package*
   asdf/*/*/setup_package*
   asdf/tests/*
   asdf/*/tests/*
   asdf/*/*/tests/*
   asdf/version.*
   asdf/compat*
   asdf/extern*

[report]
exclude_lines =
   # Have to re-enable the standard pragma
   pragma: no cover

   # Don't complain about packages we have installed
   except ImportError

   # Don't complain if tests don't hit assertions
   raise AssertionError
   raise NotImplementedError

   # Don't complain about script hooks
   def main\(.*\):