You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
[pytest]
|
|
DJANGO_SETTINGS_MODULE = src.dokumentor.settings.testing
|
|
norecursedirs = env/* docs/* misc/* static/* mysql/*
|
|
|
|
addopts = --flake8 -vv -s -p no:warnings
|
|
|
|
python_files =
|
|
test_*.py
|
|
|
|
flake8-max-line-length = 99
|
|
|
|
# E731 - do not assign a lambda expression, use a def
|
|
# F405 - name may be undefined, or defined from star imports: module
|
|
flake8-ignore =
|
|
*.py E731 F405
|
|
**/conf/** ALL
|
|
**/migrations/** ALL
|
|
**/templates/** ALL
|
|
**/public/** ALL
|
|
|