mirror of
https://github.com/kennethreitz-archive/krvim.git
synced 2026-06-05 23:40:18 +00:00
15 lines
323 B
Python
Executable File
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)
|
|
|