File: .coveragerc

package info (click to toggle)
python-cartopy 0.24.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,096 kB
  • sloc: python: 16,035; makefile: 159; javascript: 66; sh: 6
file content (17 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# .coveragerc to control coverage.py
#

[run]
branch = True
omit =
    lib/cartopy/tests/*
    lib/cartopy/_version.py
    *.pxd
plugins = Cython.Coverage

[report]
exclude_lines =
    pragma: no cover
    def __repr__
    if __name__ == .__main__.: