File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ venv.bak/
108108
109109# vscode files
110110.vscode /
111- .vscode /settings.json
111+ # .vscode/settings.json
112112
113113# IDEA files
114114.idea /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -32,4 +32,7 @@ def tearDownClass(cls):
3232
3333
3434if __name__ == '__main__' :
35+ ''' the unittest suite '''
36+ suite = unittest .TestLoader ().loadTestsFromTestCase (Test_Demo )
37+ unittest .TextTestRunner (verbosity = 2 ).run (suite )
3538 unittest .main ()
Original file line number Diff line number Diff line change @@ -28,4 +28,7 @@ def tearDownClass(cls):
2828
2929
3030if __name__ == '__main__' :
31- unittest .main ()
31+ ''' the unittest suite '''
32+ suite = unittest .TestLoader ().loadTestsFromTestCase (Test_XXX )
33+ unittest .TextTestRunner (verbosity = 2 ).run (suite )
34+ # unittest.main()
You can’t perform that action at this time.
0 commit comments