1[tox]
2envlist = flake8,py36
3
4[testenv]
5deps =
6  coverage
7  .[test]
8commands = python -m unittest {posargs}
9  coverage erase
10  coverage run --source=upt_cpan -m unittest {posargs}
11  coverage html
12  coverage report
13
14[testenv:flake8]
15basepython = python3
16deps = flake8
17commands = flake8 upt_cpan/
18