File: .coveragerc

package info (click to toggle)
python-sigima 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 24,956 kB
  • sloc: python: 33,326; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 666 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]

#--- Ignore this warning because the process isolation feature of DataLab
#--- causes coverage to report 0% coverage when no computation is performed
#--- in the isolated process during the session.
disable_warnings = no-data-collected

parallel = True
concurrency = multiprocessing,thread

omit =
    */sigima/tests/*
    */sigima/client/stub.py
    */guidata/*
    */plotpy/*
    */qwt/*

    #--- Workaround for certain builds of python-opencv package:
    ./config-3.9.py
    ./config-3.py
    ./config.py
    #---

[report]
exclude_also =
    def __repr__
    if __name__ == .__main__.:
    if TYPE_CHECKING:
    if DEBUG[\s]*:
    if self.__debug[\s]*: