File: .coveragerc

package info (click to toggle)
aplpy 2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,344 kB
  • sloc: python: 7,175; makefile: 116; ansic: 88
file content (32 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (7)
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
32
[run]

source = astropy_helpers

omit =
   astropy_helpers/*/setup_package.py
   astropy_helpers/tests/*
   astropy_helpers/conftest.py

[report]

omit =
   astropy_helpers/*/setup_package.py
   astropy_helpers/tests/*
   astropy_helpers/conftest.py

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\(.*\):

   # Ignore branches that don't pertain to this version of Python
   pragma: py{ignore_python_version}