48 строки
1.2 KiB
INI
48 строки
1.2 KiB
INI
[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.
|
|
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
|
|
|
|
[flake8]
|
|
ignore = F999,F405,W504
|
|
exclude =
|
|
src/olympia/wsgi.py,
|
|
docs,
|
|
node_modules,
|
|
.npm,
|
|
build*.py
|
|
.tox,
|
|
media,
|
|
storage,
|
|
logs,
|
|
site-static,
|
|
static,
|
|
.git
|
|
|
|
[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
|