Files
krvim/bundle/pycomplexity/ftplugin/python/runtests.py
T
Kenneth Reitz 2357f0ba6d Initial import.
2010-11-07 05:14:40 -05:00

15 lines
323 B
Python
Executable File

#!/usr/bin/env python
import sys
import nose
if __name__ == '__main__':
nose_args = sys.argv + [r'-m',
r'((?:^|[b_.-])(:?[Tt]est|When|describe|should|it))',
r'--with-doctest',
r'--doctest-extension=']
nose.run(argv=nose_args)