forked from Scille/parsec-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (36 loc) · 1.12 KB
/
setup.cfg
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
44
45
[wheel]
universal = 1
[flake8]
#
# Handled by black:
# E127: continuation line over-indented for visual indent
# E128: continuation line under-indented for visual indent
# E203 whitespace before ':'
# W503 line break before binary operator
#
# Misc:
# E266 too many leading '#' for block comment
#
# Currently not passing errors:
# E722,F841,E402,E501,F821
ignore = E127,E128,E203,W503,E266,E722,F841,E402,E501,F821
max-line-length = 100
exclude = .git,docs,restkit/compat.py,env,venv,.ropeproject,_sandbox,.tox,*_pb2.py,parsec/core/gui/_resources_rc.py,parsec/core/gui/ui/
[coverage:run]
omit = parsec/core/gui/*,parsec/backend/drivers/postgresql/*
[coverage:report]
exclude_lines =
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
[tool:pytest]
# Don't complain about trio's warning (will deal with them once 0.2.0 is released)
filterwarnings =
ignore