diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-10-11 04:13:13 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-10-11 04:16:20 +0200 |
commit | 49b50720880b3c6b685568b998282b2b394f2913 (patch) | |
tree | 466e73bd6fff5c1adbaec9948e95287cd5975b84 /uitest | |
parent | 74bf4ca9f382fa12481fda18b57cdce4c0d5422b (diff) |
make it easier to read the logs
Not yet perfect but already better.
Change-Id: I5309947333aa2cce6526335b603ef316226e490c
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/test_main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/test_main.py b/uitest/test_main.py index 7dcbb3b6431e..b3aad3cd5180 100644 --- a/uitest/test_main.py +++ b/uitest/test_main.py @@ -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)) |