summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: cf9e8f6fe3694e7c55d3c49c8dfdcf0b649c7d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[bdist_wheel]
universal = 1

[flake8]
max-line-length = 120
ignore = W504,W503

[coverage:run]
source = .
branch = True
omit =
    .tox/*
    setup.py
    **/**/tests*
    **/**/test_*.py

[coverage:report]
exclude_lines =
    pragma: no cover
    raise AssertionError
    raise NotImplementedError