19 lines
268 B
INI
19 lines
268 B
INI
[tox]
|
|
envlist = py26,py27,pypy,py32,py33,flake8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
commands =
|
|
pip install --allow-all-external -e .
|
|
nosetests
|
|
deps =
|
|
-rrequirements-dev.txt
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
{[testenv]deps}
|
|
unittest2
|
|
|
|
[testenv:flake8]
|
|
commands = flake8 hy bin tests
|