1
0
Bifurcation 0
labrique-site/setup.cfg

41 lignes
677 B
INI

[tool:pytest]
addopts = --ds=labrique.settings.test
norecursedirs = node_modules
python_files = tests.py test_*.py
testpaths = labrique
markers =
wip: mark a test as a work in progress
[coverage:run]
branch = True
source =
labrique
omit =
labrique/*tests*,
labrique/*/migrations/*,
labrique/settings/*,
labrique/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
per-file-ignores =
urls.py: BLK
max-line-length = 80