[tox] envlist = py36,py37,pypy37,py38,py39,lint [testenv] deps = .[test] commands = pytest pytest --cov=app --cov-fail-under=90 tests/ [testenv:lint] basepython = python3.6 deps = .[lint] commands = black --check setup.py app flake8 setup.py app