-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
52 lines (46 loc) · 1.02 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
[aliases]
test=pytest
[flake8]
ignore=D401,D107,D202,D200,D204,C401,D413,W504
exclude=
build/
plugins/*/build/
routemaster/migrations
no-accept-encodings=true
per-file-ignores=
**/tests/*:D,E501
routemaster/tests/test_webhook_runner.py:D,E501,P103
[mypy]
ignore_missing_imports=true
strict_optional=true
[coverage:run]
branch=True
omit =
**/__main__.py
**/tests/*.py
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
raise AssertionError
if TYPE_CHECKING:
[isort]
indent = 4
known_first_party = routemaster
extra_standard_library = dataclasses, typing_extensions
multi_line_output = 3
length_sort = True
order_by_type = True
use_parentheses = True
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
include_trailing_comma = True
atomic = True
float_to_top = True
extend_skip =
routemaster/migrations
.vscode
[tool:pytest]
python_paths=test_data/plugins/
env =
PROMETHEUS_MULTIPROC_DIR=/tmp/routemaster-tests/prometheus