summaryrefslogtreecommitdiff
path: root/tox.ini
blob: bed2bcdb16f14c625079cd3f87c11ab1205daa0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist =
    py26,py27,py32,py33,py34
# pypy is not ready yet; run manually with tox -e pypy if you want to see
# the failures

[testenv]
deps =
commands =
    pip install flake8==2.1.0 pep8==1.5.6
    flake8 --version
    python setup.py test -q
    flake8 pyflakes setup.py

[flake8]
select = E,F,W
builtins = unicode
max_line_length = 89