plan_mercredi_62/setup.cfg

47 lignes
883 B
INI

[tool:pytest]
addopts = --ds=plan_mercredi.settings.test
norecursedirs = node_modules
python_files = tests.py test_*.py
testpaths = plan_mercredi
[coverage:run]
branch = True
source =
plan_mercredi
omit =
plan_mercredi/*tests*,
plan_mercredi/*/migrations/*,
plan_mercredi/settings/*,
plan_mercredi/wsgi.py
[coverage:report]
exclude_lines =
pragma: no cover
if settings.DEBUG:
raise NotImplementedError
show_missing = True
[flake8]
exclude =
.git,
.tox,
venv,
*/migrations/*,
*/static/*,
assets,
build,
dist,
docs,
node_modules
max-line-length = 80
[isort]
line_length = 80
known_first_party = plan_mercredi
multi_line_output = 3
default_section = THIRDPARTY
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
skip_glob = **/migrations/*.py
include_trailing_comma = True