make it easier to read the logs
Not yet perfect but already better. Change-Id: I5309947333aa2cce6526335b603ef316226e490c
This commit is contained in:
parent
74bf4ca9f3
commit
49b5072088
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ if __name__ == '__main__':
|
|||
if "-d" in opts or "--debug" in opts:
|
||||
uitest.config.use_sleep = True
|
||||
|
||||
result = unittest.TextTestRunner(verbosity=2).run(test_suite)
|
||||
result = unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(test_suite)
|
||||
print("Tests run: %d" % result.testsRun)
|
||||
print("Tests failed: %d" % len(result.failures))
|
||||
print("Tests errors: %d" % len(result.errors))
|
||||
|
|
Loading…
Reference in a new issue