-
Notifications
You must be signed in to change notification settings - Fork 94
/
tox.ini
36 lines (34 loc) · 898 Bytes
/
tox.ini
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
[flake8]
extend-select=
; Use `raise from` inside `except` for error handling
; https://docs.python.org/3/tutorial/errors.html#exception-chaining
B904
; Use Counter() instead of defaultdict(int) to avoid excessive memory use:
B910
ignore=
; module level import not at top of file
E402,
; line break before binary operator
W503,
; line break after binary operator
W504
; "experimental" SIM9xx rules (flake8-simplify)
SIM9
; explicitly concatenated strings (flake8-implicit-str-concat)
ISC003
per-file-ignores=
; TYPE_CHECKING block suggestions
tests/*: TC001, TC002, TC003
; for clarity we don't merge 'with Conf():' context trees
tests/unit/parsec/*: SIM117, TC001, TC002, TC003
exclude=
build,
dist,
tests,
.git,
__pycache__,
.tox,
**data_messages_pb2.py
paths =
./cylc/flow
./tests