File: .coveragerc

package info (click to toggle)
mpl-animators 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 360 kB
  • sloc: python: 1,367; makefile: 18
file content (30 lines) | stat: -rw-r--r-- 844 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]
omit =
  mpl_animators/conftest.py
  mpl_animators/*setup_package*
  mpl_animators/extern/*
  mpl_animators/version*
  */mpl_animators/conftest.py
  */mpl_animators/*setup_package*
  */mpl_animators/extern/*
  */mpl_animators/version*

[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(.*):
  # Ignore branches that don't pertain to this version of Python
  pragma: py{ignore_python_version}
  # Don't complain about IPython completion helper
  def _ipython_key_completions_
  # typing.TYPE_CHECKING is False at runtime
  if TYPE_CHECKING:
  # Ignore typing overloads
  @overload