mirror of https://github.com/docker/docker-py.git
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:
parent
1be689da4a
commit
4c040359d0
5
tox.ini
5
tox.ini
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue