mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
19 lines
431 B
INI
19 lines
431 B
INI
[flake8]
|
|
extend-exclude = */migrations/*, paperless/settings.py, */tests/*
|
|
# E203 - https://www.flake8rules.com/rules/E203.html
|
|
# W503 - https://www.flake8rules.com/rules/W503.html
|
|
ignore = E203,W503
|
|
max-line-length = 88
|
|
|
|
[tool:pytest]
|
|
DJANGO_SETTINGS_MODULE=paperless.settings
|
|
addopts = --pythonwarnings=all --cov --cov-report=html -n auto
|
|
env =
|
|
PAPERLESS_DISABLE_DBHANDLER=true
|
|
|
|
[coverage:run]
|
|
source =
|
|
./
|
|
omit =
|
|
*/tests/*
|