Pawel Wieczorek | 9ee1258 | 2020-01-07 15:26:52 +0100 | [diff] [blame^] | 1 | [tox] |
2 | envlist = pep8, pylint | ||||
3 | skipsdist = true | ||||
4 | modules = create_config | ||||
5 | |||||
6 | [testenv] | ||||
7 | basepython = python3 | ||||
8 | deps = -r{toxinidir}/test-requirements.txt | ||||
9 | |||||
10 | [testenv:pep8] | ||||
11 | commands = flake8 --max-line-length 100 | ||||
12 | |||||
13 | [testenv:pylint] | ||||
14 | commands = pylint -f parseable {[tox]modules} |