diff options
| author | Paul Nasrat <pnasrat@gmail.com> | 2011-04-21 11:10:11 +0100 |
|---|---|---|
| committer | Paul Nasrat <pnasrat@gmail.com> | 2011-04-21 15:31:17 +0100 |
| commit | 5d57c4cb78fb9ba17027deadbafdda01efea12e1 (patch) | |
| tree | c93b649f9bde07ec165e018bb26695824563f79e /setup.py | |
| parent | e48487561417f81ba232a3016572e7aaecc67248 (diff) | |
| download | virtualenv-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.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ) |
