We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6da20 commit d03575aCopy full SHA for d03575a
scripts/atest.py
@@ -5,6 +5,7 @@
5
import platform
6
import shutil
7
import sys
8
+import time
9
from pathlib import Path
10
11
import robot
@@ -95,7 +96,9 @@ def attempt_atest_with_retries(*extra_args):
95
96
while error_count != 0 and attempt <= retries:
97
attempt += 1
98
print("attempt {} of {}...".format(attempt, retries + 1))
99
+ start_time = time.time()
100
error_count = atest(attempt=attempt, extra_args=list(extra_args))
101
+ print(error_count, "errors in", int(time.time() - start_time), "seconds")
102
103
return error_count
104
0 commit comments