Skip to content

Commit 9c6178f

Browse files
committed
add testrunner.py to run all tests (as hook for static analysis)
1 parent af7913c commit 9c6178f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎test/testrunner.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import unittest
2+
loader = unittest.TestLoader()
3+
start_dir = '.'
4+
suite = loader.discover(start_dir)
5+
6+
runner = unittest.TextTestRunner()
7+
runner.run(suite)

0 commit comments

Comments
 (0)