summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarcus Smith <qwcode@gmail.com>2013-07-01 21:14:10 -0700
committerMarcus Smith <qwcode@gmail.com>2013-07-01 21:14:10 -0700
commit156c909b951ddbce27253f425341fbd1b4132e39 (patch)
tree64c0581dea4e10d62e542690ccc86a7422fc3144 /tox.ini
parenta39eea932ae5ea5aabe489f4a30a8ed0ffb12dc7 (diff)
downloadpip-156c909b951ddbce27253f425341fbd1b4132e39.tar.gz
can't use easy_install to install virtualenv test req from git
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini9
1 files changed, 7 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index accce820b..5c11058e8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,6 +3,11 @@ envlist =
py26,py27,py32,py33,pypy
[testenv]
+deps=
+ nose>=1.3.0
+ mock
+ scripttest>=1.1.1
+ git+https://github.com/pypa/virtualenv@develop#egg=virtualenv
commands =
- python setup.py dev
- python setup.py nosetests
+ nosetests -s -v tests
+