This repository has been archived by the owner on Jun 12, 2020. It is now read-only.
forked from raiden-network/raiden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
78 lines (66 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[flake8]
ignore = B011, C814, E203, E402, E731, W503, W504
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_limit_for_setup_and_call = 540
timeout_limit_teardown = 15
norecursedirs = node_modules
; Ignore warnings:
; - grequests monkeypatch
; - urllib3 unverified TLS connection
filterwarnings =
ignore::gevent.monkey.MonkeyPatchWarning
ignore::urllib3.exceptions.InsecureRequestWarning
markers =
timeout
[mypy]
ignore_missing_imports = True
check_untyped_defs = True
# disallow_untyped_defs = True
warn_unused_configs = True
warn_unused_ignores = True
[mypy-raiden.blockchain.*]
disallow_untyped_defs = True
[mypy-raiden.network.proxies.*]
disallow_untyped_defs = True
[mypy-raiden.transfer.*]
disallow_untyped_defs = True
[mypy-raiden.tests.*]
check_untyped_defs = False
[mypy-raiden.tests.utils.factories]
ignore_errors = True
# These packages already check untyped defs
[mypy-raiden.tests.unit.test_raiden_event_handler]
check_untyped_defs = True
[mypy-raiden.tests.unit.transfer]
check_untyped_defs = True
[mypy-raiden.tests.unit.transfer.mediated_transfer.test_mediation_fee]
check_untyped_defs = True
[mypy-raiden.tests.integration.long_running.*]
check_untyped_defs = True
[mypy-raiden.tests.integration.fixtures.raiden_network]
check_untyped_defs = True