summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]