File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,9 @@ def error(msg: str, can_fix: bool) -> None:
3434
3535def run_unit_tests () -> None :
3636 # Run Unit Tests
37- stream = StringIO ()
38- runner = unittest .TextTestRunner (stream = stream )
37+ runner = unittest .TextTestRunner ()
3938 suite = unittest .defaultTestLoader .loadTestsFromModule (Tests )
4039 result = runner .run (suite )
41- print (f'Tests run: { result .testsRun } .' )
42- stream .seek (0 )
43- print (f'Test output:\n { stream .read ()} ' )
4440 if not result .wasSuccessful ():
4541 error ('Unit Tests had an error, see output above.' , False )
4642
Original file line number Diff line number Diff line change 11__version__ = '8.3.41'
22
33# This is a supplemental version number for branches based off of main dev.
4- supplementary_version = 1
4+ supplementary_version = 2
55
66# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch.
77# This will be 0x00 for main releases and 0x01 for main dev.
You can’t perform that action at this time.
0 commit comments