summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2014-11-20 16:15:20 -0500
committerRyan Petrello <lists@ryanpetrello.com>2014-11-20 16:17:10 -0500
commit0fe902734d5f17d5f224e31850c5670e8a03e1ec (patch)
tree449efe8e3251e150d481d7a4e83add9ea5a9c455
parentd0abd82c67c1a4e1046d82380cf0f5f3fd546c42 (diff)
downloadpecan-0fe902734d5f17d5f224e31850c5670e8a03e1ec.tar.gz
Fix broken wsme-stable tests and remove some deprecated pip flags.
Change-Id: I6ddbd80faf24d368b7a2b07faa013eeaf25e5a05
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 468021f..5e31f6c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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]