From 74934b7fd0e23efd92be0f1791039f8675de4078 Mon Sep 17 00:00:00 2001
From: Bertrand Martin Dit Latour <bertrand.martindl@cern.ch>
Date: Mon, 10 Jul 2023 21:36:07 +0200
Subject: [PATCH] TrigInDetValidation: increase TrigInDetRdictStep timeout

TrigInDetValidation: increase TrigInDetRdictStep timeout

Hello,

This MR is increasing the timeout of the TrigInDetRdictStep in trigger ART tests from 10 to 15 mins, to avoid occasional timeout errors (ATR-27688).
For simplicity, the timeout is increased for all ID tests. One option could be to introduce an extra agument, to be able to specify the timeout only for a given test, but that seems a bit overkill.

Cheers,
Bertrand
---
 .../TrigInDetValidation/python/TrigInDetArtSteps.py             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Trigger/TrigValidation/TrigInDetValidation/python/TrigInDetArtSteps.py b/Trigger/TrigValidation/TrigInDetValidation/python/TrigInDetArtSteps.py
index 5acc39ffc24e..0da43bf18028 100644
--- a/Trigger/TrigValidation/TrigInDetValidation/python/TrigInDetArtSteps.py
+++ b/Trigger/TrigValidation/TrigInDetValidation/python/TrigInDetArtSteps.py
@@ -298,7 +298,7 @@ class TrigInDetRdictStep(Step):
         self.auto_report_result = True
         self.required = True
         self.executable = 'TIDArdict'
-        self.timeout = 10*60
+        self.timeout = 15*60
         self.config = config
 
     def configure(self, test):
-- 
GitLab