summaryrefslogtreecommitdiffstats
path: root/.coveragerc
blob: 9b1c27c6aaed8f6b8e6edc5fe628268606e57f4a (plain)
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
[report]

include =
    *glances*

omit =
    setup.py
    glances/outputs/*
    glances/exports/*
    glances/compat.py
    glances/autodiscover.py
    glances/client_browser.py
    glances/config.py
    glances/history.py
    glances/monitored_list.py
    glances/outdated.py
    glances/password*.py
    glances/snmp.py
    glances/static_list.py

exclude_lines =
    pragma: no cover
    if PY3:
    if __name__ == .__main__.:
    if sys.platform.startswith
    except ImportError:
    raise NotImplementedError
    if WINDOWS
    if MACOS
    if BSD