Skip to content

Commit 7c6baf0

Browse files
committed
More detailed progress updates for unit tests in CI
1 parent ecafb3d commit 7c6baf0

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

CI.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,9 @@ def error(msg: str, can_fix: bool) -> None:
3434

3535
def 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

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.

0 commit comments

Comments
 (0)