aboutsummaryrefslogtreecommitdiffhomepage
path: root/.coveragerc
blob: 52944effeb4b06dc1f1ccdcb6f6792d8c75d04d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[run]
branch = True
omit =
    test/*
    setup.py
    pyecsca/codegen/templates/*
    ext/pyecsca/*
    pyecsca-upstream/*

[report]
exclude_lines =
    __repr__
    pragma: no cover
    raise AssertionError
    raise NotImplementedError
    if 0:
    if __name__ == .__main__.:
    \.\.\.$