We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2835d08 commit cf288e6Copy full SHA for cf288e6
2 files changed
template/template_case.py
@@ -32,4 +32,7 @@ def tearDownClass(cls):
32
33
34
if __name__ == '__main__':
35
+ ''' the unittest suite '''
36
+ suite = unittest.TestLoader().loadTestsFromTestCase(Test_Demo)
37
+ unittest.TextTestRunner(verbosity=2).run(suite)
38
unittest.main()
template/test_template.py
@@ -28,4 +28,7 @@ def tearDownClass(cls):
28
29
30
31
- unittest.main()
+ suite = unittest.TestLoader().loadTestsFromTestCase(Test_XXX)
+ # unittest.main()
0 commit comments