From 86ff1d1c5117c248a4a0ef7c714a615df81fe700 Mon Sep 17 00:00:00 2001 From: edo-neo Date: Thu, 27 Mar 2025 16:16:34 +0100 Subject: [PATCH] Reduce default autotest period to 4 hours. Changed the default autotest_period from 8.5 hours to 4 hours for better testing frequency. The commented-out code remains as a reference for previous configurations. --- src/ui/test/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/test/test.py b/src/ui/test/test.py index b4ae4fa..4fb0ca6 100755 --- a/src/ui/test/test.py +++ b/src/ui/test/test.py @@ -173,7 +173,8 @@ class Test(Widget): if "--test-autotest" in sys.argv: self.autotest_period = int(60 * 1000) # 1 min else: - self.autotest_period = int(8.5 * 60 * 60 * 1000) # 8.5 HOURS + #self.autotest_period = int(8.5 * 60 * 60 * 1000)# 8.5 HOURS + self.autotest_period = int(4 * 60 * 60 * 1000)# 4 HOURS # self.autotest_period = 12 * 60 * 60 * 1000 # 12 HOURS # if not self.config["autotest_done"]: # self.request_autotest("init")