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.
18 lines
400 B
18 lines
400 B
[pytest]
|
|
DJANGO_SETTINGS_MODULE = lms.settings
|
|
norecursedirs = env/* docs/* misc/* static/*
|
|
|
|
;addopts = --flake8 -vvs
|
|
addopts = -vvs
|
|
|
|
python_files =
|
|
test_*.py
|
|
|
|
flake8-max-line-length = 120
|
|
|
|
# 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
|
|
**/migrations/** ALL
|
|
**/templates/** ALL |