forked from asfaltboy/django-adminactions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (39 loc) · 930 Bytes
/
setup.cfg
File metadata and controls
46 lines (39 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
known_first_party = adminactions
multi_line_output = 0
line_length=120
balanced_wrapping = true
order_by_type=false
known_standard_library=six
[wheel]
universal = 1
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[flake8]
max-complexity = 12
max-line-length = 160
exclude = .tox,migrations,.git,docs,diff_match_patch.py, deploy/**,settings,~*
ignore = E501,E401,W391,E128,E261
[pytest]
python_paths=./tests
DJANGO_SETTINGS_MODULE=demo.settings
norecursedirs = data .tox concurrency docs
addopts =
-p no:sugar
-p no:pep8
--tb=short
--capture=no
; --doctest-modules
--doctest-glob=adminactions/*.py
--echo-version django
--echo-env DJANGO
doctest_optionflags=
python_files=tests/test_*.py
pep8ignore = * ALL
markers =
functional: mark a test as functional