summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@gmail.com>2011-04-21 11:10:11 +0100
committerPaul Nasrat <pnasrat@gmail.com>2011-04-21 15:31:17 +0100
commit5d57c4cb78fb9ba17027deadbafdda01efea12e1 (patch)
treec93b649f9bde07ec165e018bb26695824563f79e /setup.py
parente48487561417f81ba232a3016572e7aaecc67248 (diff)
downloadvirtualenv-5d57c4cb78fb9ba17027deadbafdda01efea12e1.tar.gz
Prevent traceback with non-exec interpreter
Fixes #121 Add tests for virtualenv with nose and mock Add helper method to virtualenv for is_executable Raise SystemExit rather than sys.exit directly Tested on 2.4.4, 2.7.1 and 3.2
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index dad8605..3815afb 100644
--- a/setup.py
+++ b/setup.py
@@ -52,5 +52,7 @@ setup(name='virtualenv',
py_modules=['virtualenv'],
packages=['virtualenv_support'],
package_data={'virtualenv_support': ['*-py%s.egg' % sys.version[:3], '*.tar.gz']},
+ test_suite='nose.collector',
+ tests_require=['nose', 'Mock'],
**kw
)