summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 35b582973a84962caad017cfb87a577c74f28582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[tox]
skip_missing_interpreters = True
envlist = py,pypy3

[testenv]
deps = flake8==6.0.0
setenv = PYFLAKES_ERROR_UNKNOWN=1
commands =
    python --version --version
    python -m unittest discover pyflakes {posargs}
    flake8 pyflakes setup.py

[flake8]
builtins = unicode
max_line_length = 89