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.
This commit is contained in:
edo-neo 2025-03-27 16:16:34 +01:00
parent b6e041d51f
commit 86ff1d1c51

View File

@ -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")