From 44c2477b78a0d8e76cc976beb4b23498b39a45f3 Mon Sep 17 00:00:00 2001 From: Rafal Blaczkowski Date: Fri, 9 Oct 2020 12:08:50 +0200 Subject: [PATCH] Add strict timeout for test execution (#2598) --- .ci/openvino-onnx/Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/openvino-onnx/Jenkinsfile b/.ci/openvino-onnx/Jenkinsfile index 3ae1ca8eec9..d0e3f493286 100644 --- a/.ci/openvino-onnx/Jenkinsfile +++ b/.ci/openvino-onnx/Jenkinsfile @@ -102,6 +102,9 @@ pipeline { } } stage("Run tests") { + options { + timeout(time: 15, unit: 'MINUTES') + } steps{ runTests() }