From df193b2fd2ccd16850e6c4f5732c9d81b2f15187 2009-08-02 00:18:36 From: Fernando Perez Date: 2009-08-02 00:18:36 Subject: [PATCH] Remove test suite from win32 start menu. Since the test suite exits immediately upon completion, it makes no sense to run it from a menu, as it's impossible then to see/copy the results. Anyone who is going to report anything should run it from a terminal so the results stay on screen. --- diff --git a/scripts/ipython_win_post_install.py b/scripts/ipython_win_post_install.py index fb1c2bc..45ef5f4 100755 --- a/scripts/ipython_win_post_install.py +++ b/scripts/ipython_win_post_install.py @@ -69,11 +69,7 @@ def install(): link = pjoin(ip_start_menu, 'scipy.lnk') cmd = '"%s" -pylab -p scipy' % ipybase mkshortcut(python,'IPython (scipy profile)',link,cmd) - - link = pjoin(ip_start_menu, 'IPython test suite.lnk') - cmd = '"%s" -vv' % pjoin(scripts, 'iptest') - mkshortcut(python,'Run the IPython test suite',link,cmd) - + link = pjoin(ip_start_menu, 'ipcontroller.lnk') cmd = '"%s" -xy' % pjoin(scripts, 'ipcontroller') mkshortcut(python,'IPython controller',link,cmd)