debian-django-select2/setup.cfg

25 lines
502 B
INI
Raw Normal View History

2017-02-21 14:10:56 +01:00
[tool:pytest]
norecursedirs = env docs
2015-08-06 11:58:27 +02:00
addopts = --tb=short -rxs
DJANGO_SETTINGS_MODULE=tests.testapp.settings
[flake8]
max-line-length = 120
max-complexity = 10
statistics = true
show-source = true
exclude = docs,runtests.py,setup.py,.tox,env
2015-08-06 11:58:27 +02:00
[pep257]
match = (?!setup).*.py
match-dir = (?!tests|env|docs|\.).*
2015-08-06 11:58:27 +02:00
[isort]
atomic = true
multi_line_output = 5
line_length = 79
skip = manage.py,docs,.tox,env
2016-02-04 11:56:09 +01:00
known_first_party = django_select2, tests
known_third_party = django
2015-08-06 11:58:27 +02:00
combine_as_imports = true