-
-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (25 loc) · 711 Bytes
/
setup.cfg
File metadata and controls
28 lines (25 loc) · 711 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
[flake8]
exclude = docs
max-line-length = 79
max-complexity = 12
doctests = True
statistics = True
benchmark = True
ignore = D101,D102,D103,D105,D107,D401,T000,C901,T201,W503,E203,T203,D202,W605,D205,D400,D104,E501
[isort]
line_length = 79
multi_line_output = 3
use_parentheses = True
include_trailing_comma = True
order_by_type = False
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
# Always run with long traceback and local variables on failure
addopts = --showlocals -p no:warnings
# ignore all hidden files and folders
norecursedirs = .* tmp* .github pgsync examples bin
python_files = tests.py test_*.py *_tests.py
python_functions = test_*