forked from pallets/werkzeug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
35 lines (30 loc) · 807 Bytes
/
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
[metadata]
license_file = LICENSE
[bdist_wheel]
universal = 1
[tool:pytest]
testpaths = tests
norecursedirs = tests/hypothesis
filterwarnings =
ignore::requests.packages.urllib3.exceptions.InsecureRequestWarning
; warning about collections.abc fixed in watchdog master
ignore::DeprecationWarning:watchdog.utils.bricks:175
; DeprecationWarnings from Werkzeug
ignore:.* version 1\.0:DeprecationWarning
ignore:The default 'Secure:UserWarning
[coverage:run]
branch = True
source =
werkzeug
tests
[coverage:paths]
source =
werkzeug
.tox/*/lib/python*/site-packages/werkzeug
.tox/*/site-packages/werkzeug
[flake8]
ignore = E126,E241,E272,E305,E402,E731,W503
exclude=.tox,examples,docs
max-line-length=100
per-file-ignores =
werkzeug/wrappers/__init__.py: F401