Fix broken wsme-stable tests as of the latest 0.7.0 release.

Change-Id: I7b0c7c7fe423fd29b0792f9708b940116e6914c1
This commit is contained in:
Ryan Petrello 2015-06-08 08:51:02 -07:00
parent d3159f1d6b
commit 0001a9d94d
1 changed files with 4 additions and 3 deletions

View File

@ -96,10 +96,11 @@ basepython = python2.7
deps = nose
ipaddr
simplegeneric
changedir = {envdir}/build/wsme
commands = pip install --build {envdir}/build --pre --no-clean --no-use-wheel wsme
{envdir}/bin/python setup.py develop
changedir = {envdir}/src
commands = pip install --download {envdir}/src --pre --no-deps --no-clean --no-use-wheel wsme
sh -c "find -iname 'wsme*.tar.gz' | xargs tar --strip-components 1 -xf"
{envdir}/bin/pip install -U {toxinidir} # install pecan-dev
{envdir}/bin/pip install .
nosetests -v tests/pecantest
[testenv:wsme-tip]