validate: Let people know the testsuite starts running

Now that we do not print infos about successful tests when redirecting.
This commit is contained in:
Thibault Saunier 2019-02-01 01:24:19 -03:00
parent ba9b2c5ec5
commit 71d2e3f418

View file

@ -1769,6 +1769,8 @@ class _TestsLauncher(Loggable):
all_tests = self.list_tests()
self.all_tests = all_tests
self.total_num_tests = len(self.all_tests)
if not sys.stdout.isatty():
printc("\nRunning %d tests..." % self.total_num_tests, color=Colors.HEADER)
self.reporter.init_timer()
alone_tests = []