File: bignose

package info (click to toggle)
nipy 0.1.2%2B20100526-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 11,992 kB
  • ctags: 13,434
  • sloc: python: 47,720; ansic: 41,334; makefile: 197
file content (15 lines) | stat: -rwxr-xr-x 273 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
''' Script to run nosetests with all favorite options

In this case, with full console output, and doctests

You can add other options with (e.g.):

bignose --with-coverage
'''
import sys
import nose

sys.argv += ['-sv', '--with-doctest']

nose.run()