backup-tool/tox.ini

15 lines
238 B
INI
Raw Normal View History

2021-04-24 19:38:03 +02:00
[tox]
2021-04-24 22:22:12 +02:00
envlist = py36,py37,py38,py39,lint
2021-04-24 19:38:03 +02:00
[testenv]
deps = pytest
commands =
pytest
2021-04-24 22:22:12 +02:00
[testenv:lint]
basepython = python3.6
deps = black==20.8b1
flake8==3.8.4
commands = black --check setup.py app
flake8 setup.py app