Better cli test output

This commit is contained in:
Tamas Kocsis 2020-11-03 02:52:50 +01:00
parent c515e26cd6
commit 48455e3e45
1 changed files with 1 additions and 1 deletions

View File

@ -578,7 +578,7 @@ class Actions(object):
func_name = "test" + test_name[0].upper() + test_name[1:]
if hasattr(self, func_name):
func = getattr(self, func_name)
print("- Running %s" % test_name, end="")
print("- Running test: %s" % test_name, end="")
s = time.time()
ret = func(*args, **kwargs)
if type(ret) is types.GeneratorType: