Fix broken wsme-stable tests and remove some deprecated pip flags.

Change-Id: I6ddbd80faf24d368b7a2b07faa013eeaf25e5a05
This commit is contained in:
Ryan Petrello
2014-11-20 16:15:20 -05:00
parent d0abd82c67
commit 0fe902734d

View File

@@ -114,10 +114,10 @@ commands=pecan create testing123 rest-api
[testenv:wsme-stable]
basepython = python2.7
deps = nose
# Manually download the source from PyPI and build it with the --editable flag.
# This gives us access to run the wsmeext (pecan) tests.
commands = pip install --pre --no-deps --no-install wsme
pip install --no-clean -ve {envdir}/build/wsme/
wsme
# Manually download the source from PyPI with the --download flag.
# This gives us the ability to run the wsmeext (pecan) tests.
commands = pip install --download {envdir} --no-deps --no-clean --no-use-wheel wsme
nosetests -v {envdir}/build/wsme/tests/pecantest
[testenv:wsme-tip]