-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (37 loc) · 978 Bytes
/
setup.cfg
File metadata and controls
43 lines (37 loc) · 978 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
[metadata]
license_files =
LICENSE
[bdist_wheel]
universal = 1
[sdist]
formats = zip
[flake8]
ignore =
E301,E306,E402,E501,E731,F401,F403,W503,W504
# E301: expected-blank-line-missing
# E306: no-blank-line-before-nested-def
# E402: module-import-not-at-top-file
# E501: line-too-long
# E731: used-lambda
# F401: unused-import
# F403: wildcard-import
# W503: line-break-before-binary-operator
# W504: line-break-after-binary-operator
[tool:pytest]
filterwarnings =
error
ignore::DeprecationWarning:coverage.pytracer:
ignore::DeprecationWarning:unittest2.compatibility:
ignore:TestResult has no addDuration method:RuntimeWarning:unittest.case:
ignore:(Attribute )?.* is deprecated and will be removed:DeprecationWarning::
[coverage:paths]
source =
src
/opt/pyenv/versions/**/site-packages
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
def __str__
raise NotImplementedError
if __name__ == .__main__.: