Skip to content

Commit

Permalink
Remove test suite from win32 start menu.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fperez committed Aug 2, 2009
1 parent 0b15f36 commit df193b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions scripts/ipython_win_post_install.py
Expand Up @@ -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)
Expand Down

0 comments on commit df193b2

Please sign in to comment.