summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 67d9a5da8021ffc2f80ad464d86bbdbfdac26cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
[tox]
envlist = py2,py3,codestyle

[testenv]
deps = -rrequirements.test.txt
commands = py.test

[testenv:codestyle]
deps = pycodestyle
# E501 - line too long
commands = pycodestyle --ignore=E501