forked from mozilla/addons-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
53 lines (51 loc) · 1.57 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
[tool:pytest]
addopts = -vs --reuse-db --showlocals --tb=short
python_files=test*.py
markers =
es_tests: mark a test as an elasticsearch test.
needs_locales_compilation: mark a test as needing compiled locales to work.
allow_external_http_requests: mark a test to allow external http requests and disable responses.
static_assets: Tests that are depending on `compress_assets` and require to be separated with other tests.
internal_routes_allowed: mark a test as needing INTERNAL_ROUTES_ALLOWED=True.
norecursedirs =
node_modules locale static media site-static user-media tmp
templates fixtures migrations
.* *.egg dist cache venv __pycache__
DJANGO_SETTINGS_MODULE = settings_test
# Ignoring csp deprecation warnings,
# we have control over the module and currently it warns
# for child-src which is deprecated in CSPv3 but we're
# still on CSP 2 while CSP 3 is still in working draft (sept 2018)
filterwarnings =
default
ignore:::csp.utils
# Ignore ResourceWarning for now. It's a Python 3 thing :-/
ignore::ResourceWarning
[flake8]
ignore = F999,F405,W504
exclude =
src/olympia/wsgi.py,
docs,
node_modules,
.npm,
build*.py
.tox,
media,
storage,
logs,
site-static,
static,
.git,
*/migrations/*.py
[isort]
atomic=true
lines_after_imports=2
lines_between_types=1
multi_line_output=4
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = false
known_django = django
known_olympia = olympia
line_length = 79
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,OLYMPIA,FIRSTPARTY,LOCALFOLDER