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

[testenv]
deps = flake8==3.6.0
setenv = PYFLAKES_ERROR_UNKNOWN=1
commands =
    python -m unittest discover pyflakes
    flake8 pyflakes setup.py

[flake8]
builtins = unicode
max_line_length = 89