Tests: redirect tests output to the stdout.
This commit is contained in:
@@ -12,7 +12,7 @@ if __name__ == '__main__':
|
||||
tests = loader.discover(start_dir=this_dir)
|
||||
suite.addTests(tests)
|
||||
|
||||
runner = unittest.TextTestRunner(verbosity=3)
|
||||
runner = unittest.TextTestRunner(stream=sys.stdout, verbosity=3)
|
||||
result = runner.run(suite)
|
||||
|
||||
ret = not (len(result.failures) == len(result.errors) == 0)
|
||||
|
||||
Reference in New Issue
Block a user