1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/pyproject.toml
Jimmy Zelinskie 300309dbc4 tests: fix tox
This change enables tox to run the entire test suite without any bash
scripts or makefiles.
2020-04-28 18:13:39 -04:00

20 lines
466 B
TOML

[tool.black]
line-length = 100
target-version = ['py27']
[tool.pylint.messages_control]
disable = "missing-docstring,invalid-name,too-many-locals,too-few-public-methods,too-many-lines"
[tool.pylint.typecheck]
ignored-modules = "features,greenlet"
generated-members = "REQUEST,acl_users,aq_parent,DoesNotExist,id,can"
[tool.pylint.format]
max-line-length = 100
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = ['test/**', 'venv/**', '**/test/**']