diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py27,py35,py36,py37,pyflakes +envlist = py27,py35,py36,py37,flake8 skip_missing_interpreters = True [testenv] @@ -7,9 +7,12 @@ commands = python setup.py test sitepackages = True -[testenv:pyflakes] +[testenv:flake8] deps = - pyflakes + flake8 commands = - pyflakes pym -sitepackages = False + python -m flake8 pym + +[flake8] +# We initially start small, but we probably want to expand that list with time. +select = F4,F6,F7,F8,F9 |
