aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtests.py')
-rw-r--r--tests/runtests.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
new file mode 100644
index 0000000..241e6af
--- /dev/null
+++ b/tests/runtests.py
@@ -0,0 +1,14 @@
1#!/usr/bin/env python
2
3import sys
4
5import nose
6
7
8if __name__ == '__main__':
9 nose_args = sys.argv + [r'-m',
10 r'((?:^|[b_.-])(:?[Tt]est|When|should))',
11 r'--with-coverage',
12 r'--cover-package=mrbelvedere',
13 r'--cover-erase']
14 nose.run(argv=nose_args)