mirror of
https://github.com/jopohl/urh.git
synced 2026-03-06 16:26:48 +01:00
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
import datetime
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
|
|
RUNS = 200
|
|
LOG_SIZE_MB = 1
|
|
|
|
|
|
os.system("mkdir -p /tmp/tests")
|
|
|
|
streak = 0
|
|
longest_streak = 0
|
|
|
|
for i in range(RUNS):
|
|
try:
|
|
time.sleep(0.1)
|
|
filename = "/tmp/tests/" + str(datetime.datetime.now()).replace(" ", "-")
|
|
t = time.time()
|
|
completed = subprocess.run("pytest -s -v ../tests", shell=True, stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT)
|
|
|
|
if completed.returncode == 0:
|
|
streak += 1
|
|
longest_streak = max(streak, longest_streak)
|
|
print("#{} was successful [{:.2f}s] (Streak: {}/{})".format(i + 1, time.time() - t, streak, longest_streak))
|
|
else:
|
|
streak = 0
|
|
print("#{} failed [{:.2f}s]".format(i + 1, time.time() - t))
|
|
with open(filename, "wb") as f:
|
|
f.write(completed.stdout[-LOG_SIZE_MB * 1024 * 1024:])
|
|
print("Written output to file {}".format(filename))
|
|
except KeyboardInterrupt:
|
|
sys.exit(1)
|