summaryrefslogtreecommitdiff
path: root/tox.ini
blob: f3db2bb60253517fe070c26d920fdd647c2b0a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
skip_missing_interpreters = True
envlist =
    py27,py34,py35,py36,py37,pypy,pypy3

[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