summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDeni Bertovic <deni@kset.org>2013-09-26 00:37:17 +0200
committerDeni Bertovic <deni@kset.org>2013-09-26 00:37:17 +0200
commit4c040359d0d04f65016fca4a72ce597594663b41 (patch)
treed97f5c02e60760f11a56538e1ef24bad0bbc6bb9 /tox.ini
parent1be689da4a75ccc4c4229101c4a74947cc530d35 (diff)
downloaddocker-py-4c040359d0d04f65016fca4a72ce597594663b41.tar.gz
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
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 54b22f4..12b033e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,9 @@
[tox]
envlist = py26, py27, py32, py33
+skipsdist=True
[testenv]
+usedevelop=True
commands =
- {envpython} setup.py install
{envpython} tests/test.py
+
+deps = -r{toxinidir}/requirements.txt