1
0
Fork 0
identify/tox.ini
Daniel Baumann 12d0b39570
Merging upstream version 2.4.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-12 21:55:40 +01:00

18 lines
342 B
INI

[tox]
envlist = py36,pypy3,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