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.

26 lines
357 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
--tb=short
# potentially dangerous!
# --doctest-modules
# --doctest-glob=\*.rst
[coverage:run]
omit =
venv/*
tests/*