1
0
Fork 0
identify/tox.ini
Daniel Baumann 70ad6159f9
Merging upstream version 2.5.26.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 05:33:03 +01:00

18 lines
334 B
INI

[tox]
envlist = py,pre-commit
[testenv]
deps = -rrequirements-dev.txt
extras = license
commands =
coverage erase
coverage run -m pytest {posargs:tests}
coverage report
[testenv:pre-commit]
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
[pep8]
ignore = E265,E501,W504