You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
513 B
INI
35 lines
513 B
INI
|
|
[flake8]
|
|
ignore = E402
|
|
max-line-length = 119
|
|
exclude = .git,.tox,build,_build,env,venv,__pycache__
|
|
|
|
[tool:pytest]
|
|
testpaths = tests
|
|
python_files =
|
|
test_*.py
|
|
*_test.py
|
|
tests.py
|
|
addopts =
|
|
-ra
|
|
--strict-markers
|
|
--tb=short
|
|
|
|
# potentially dangerous!
|
|
# --doctest-modules
|
|
# --doctest-glob=\*.rst
|
|
|
|
[coverage:run]
|
|
omit =
|
|
venv/*
|
|
tests/*
|
|
|
|
[pylint.FORMAT]
|
|
max-line-length = 120
|
|
|
|
[pylint.MESSAGES CONTROL]
|
|
disable=logging-fstring-interpolation
|
|
|
|
[pylint.REPORTS]
|
|
output-format = colorized
|