mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-04 20:26:53 +00:00
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.
15 lines
210 B
INI
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
|