mirror of
https://github.com/mudler/luet.git
synced 2025-09-17 23:58:48 +00:00
19 lines
390 B
INI
19 lines
390 B
INI
[tox]
|
|
envlist = py36,py37,py38,pypy3,pre-commit
|
|
|
|
[testenv]
|
|
deps = -rrequirements-dev.txt
|
|
commands =
|
|
coverage erase
|
|
coverage run -m pytest {posargs:tests}
|
|
coverage report --show-missing --fail-under 100
|
|
pre-commit install
|
|
|
|
[testenv:pre-commit]
|
|
skip_install = true
|
|
deps = pre-commit
|
|
commands = pre-commit run --all-files --show-diff-on-failure
|
|
|
|
[pep8]
|
|
ignore = E265,E501,W504
|