2017-02-23 16:50:04 +00:00
|
|
|
[tool:pytest]
|
|
|
|
|
xfail_strict=true
|
2018-11-07 13:39:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[flake8]
|
2021-02-16 09:02:45 +00:00
|
|
|
exclude = venv*,__pycache__,node_modules,cache,migrations,build,sample_cap_xml_documents.py
|
|
|
|
|
max-line-length = 120
|
2018-11-07 13:39:08 +00:00
|
|
|
# W504 line break after binary operator
|
2023-08-25 08:10:33 -07:00
|
|
|
extend_ignore=B306, W504, E203
|
2021-03-10 13:51:58 +00:00
|
|
|
|
|
|
|
|
[isort]
|
2023-08-29 14:54:30 -07:00
|
|
|
profile = black
|
|
|
|
|
multi_line_output = 3
|
|
|
|
|
|
2023-08-09 08:33:20 -07:00
|
|
|
[coverage:run]
|
|
|
|
|
omit =
|
|
|
|
|
# omit anything in a .local directory anywhere
|
|
|
|
|
*/.local/*
|
|
|
|
|
# omit everything in /usr
|
|
|
|
|
/usr/*
|
|
|
|
|
*/tests/*
|
|
|
|
|
*/virtualenvs/*
|
|
|
|
|
*/migrations/*
|