fix tox.ini file

Tox now uses the development client lib in the local repo instead
if using setup.py to install it into every environment. Also
added deps that points to requiremnts.txt so tox installs the needed
dependencies
This commit is contained in:
Deni Bertovic 2013-09-26 00:37:17 +02:00
parent 1be689da4a
commit 4c040359d0
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
[tox] [tox]
envlist = py26, py27, py32, py33 envlist = py26, py27, py32, py33
skipsdist=True
[testenv] [testenv]
usedevelop=True
commands = commands =
{envpython} setup.py install
{envpython} tests/test.py {envpython} tests/test.py
deps = -r{toxinidir}/requirements.txt