autotest: stop printing test names out when autotest.py run

it's just garbage for most people.  There's always --list-tests or whatever to find these
This commit is contained in:
Peter Barker 2023-03-09 12:38:10 +11:00 committed by Peter Barker
parent b552632b01
commit 3a5567265a

View File

@ -415,7 +415,7 @@ def run_specific_test(step, *args, **kwargs):
global tester
tester = tester_class(*args, **kwargs)
print("Got %s" % str(tester))
# print("Got %s" % str(tester))
for a in tester.tests():
if type(a) != Test:
a = Test(a)