We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba39cde commit 95ce8a9Copy full SHA for 95ce8a9
1 file changed
tests/test_all.py
@@ -0,0 +1,18 @@
1
+import unittest
2
+
3
+from .test_command import CommandTestCase
4
+from .test_reply import ReplyTestCase
5
+from .test_bus import BusTestCase
6
7
+def create_suite():
8
+ test_suite = unittest.TestSuite()
9
+ test_suite.addTest(CommandTestCase())
10
+ test_suite.addTest(ReplyTestCase())
11
+ test_suite.addTest(BusTestCase())
12
+ return test_suite
13
14
+if __name__ == '__main__':
15
+ suite = create_suite()
16
17
+ runner=unittest.TextTestRunner()
18
+ runner.run(suite)
0 commit comments