From c6a121c4f0984c30ed0e47dd18e59237b9edec25 Mon Sep 17 00:00:00 2001 From: Anastasiya Semiankevich Date: Tue, 25 Jun 2024 10:58:12 +0300 Subject: [PATCH] chore: remove timeout to see if the fix in the app was root cause of tests being stuck --- ci/Jenkinsfile.tests-e2e | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/Jenkinsfile.tests-e2e b/ci/Jenkinsfile.tests-e2e index 1410ffd1bc..eb1f138d90 100644 --- a/ci/Jenkinsfile.tests-e2e +++ b/ci/Jenkinsfile.tests-e2e @@ -161,10 +161,9 @@ pipeline { ]) { /* Keep the --reruns flag first, or it won't work */ sh """ - python3 -m pytest --reruns=1 --timeout=180 ${flags.join(" ")} \ + python3 -m pytest --reruns=1 ${flags.join(" ")} \ --disable-warnings \ - --alluredir=./allure-results \ - -o timeout_func_only=true + --alluredir=./allure-results """ } }