backup-tool/tox.ini

16 lines
264 B
INI
Raw Normal View History

2021-04-24 17:38:03 +00:00
[tox]
2021-04-28 14:09:44 +00:00
envlist = py36,py37,pypy37,py38,py39,lint
2021-04-24 17:38:03 +00:00
[testenv]
2021-04-24 21:17:03 +00:00
deps = .[test]
2021-04-24 17:38:03 +00:00
commands =
pytest
2021-04-24 21:17:03 +00:00
pytest --cov=app --cov-fail-under=90 tests/
2021-04-24 20:22:12 +00:00
[testenv:lint]
basepython = python3.6
2021-04-24 21:09:13 +00:00
deps = .[lint]
2021-04-24 21:17:03 +00:00
commands =
black --check setup.py app
flake8 setup.py app