File size: 396 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[tox]
envlist = py26,py27,py33,py34,pypy
# Comment to build sdist and install into virtualenv
# This is helpful to test installation but takes extra time
skipsdist = True
[testenv:py26]
# Python 2.6 requires two extra test dependencies
deps =
simplejson
unittest2
ordereddict
-rrequirements.txt
[testenv]
deps = -rrequirements.txt
commands =
nosetests {posargs:tests/unit}
|