flake8/tox.ini
Joe Gordon ab849a9931 Have tox install via setup.py develop
Tox 1.6 has a feature to install code into the virtualenv via 'setup.py
develop' This makes it easier to source the tox virtualenv and test code
changes.
2014-10-14 15:30:50 -07:00

15 lines
210 B
INI

[tox]
minversion = 1.6
envlist =
py26,py27,py32,py33,py34
[testenv]
usedevelop = True
deps =
commands =
python setup.py test -q
python setup.py flake8
[flake8]
select = E,F,W
max_line_length = 79