forked from raiden-network/raiden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (44 loc) · 1.04 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
46
47
48
49
50
51
[flake8]
ignore = E731, E203, E402, W503, W504, C814
max-line-length = 99
exclude = build,dist,.git,.venv,tools/ansible/contrib
[pep8]
ignore = E731, E203, E402, W503, W504, C814
max-line-length = 99
[isort]
line_length=99
known_future_library=future
known_first_party=raiden,raiden_contracts,scenario_player
default_section=THIRDPARTY
combine_as_imports=1
# black compatibility
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
[coverage:run]
branch = True
concurrency = gevent
[coverage:report]
omit =
*/.tox/*
*/.pyenv/*
*/tests/*
*/site-packages/*
[tool:pytest]
timeout = 540
norecursedirs = node_modules
; Ignore warnings:
; - grequests monkeypatch
; - urllib3 unverified TLS connection
filterwarnings =
ignore::gevent.monkey.MonkeyPatchWarning
ignore::urllib3.exceptions.InsecureRequestWarning
[mypy]
ignore_missing_imports = True
# check_untyped_defs = True
# disallow_untyped_defs = True
warn_unused_configs = True
warn_unused_ignores = True
[mypy-raiden.tests.*]
ignore_errors = True