From 2edb34c97af409a4a134cb9b653539b23438832e Mon Sep 17 00:00:00 2001 From: "jean-francois.figue" Date: Fri, 7 Feb 2025 11:40:23 +0100 Subject: [PATCH] fix: increase timeout to 10s in test_failure_zero_division_error_with_timeout --- tests/disciplines/wrappers/test_retry_discipline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/disciplines/wrappers/test_retry_discipline.py b/tests/disciplines/wrappers/test_retry_discipline.py index 5262ce0c1d..8d2e3ff85d 100644 --- a/tests/disciplines/wrappers/test_retry_discipline.py +++ b/tests/disciplines/wrappers/test_retry_discipline.py @@ -159,7 +159,7 @@ def test_failure_zero_division_error_with_timeout( disc = RetryDiscipline( a_crashing_analytic_discipline, n_retry=n_try, - timeout=5.0, + timeout=10.0, fatal_exceptions=fatal_exceptions, ) with pytest.raises(ZeroDivisionError, match="float division by zero"): -- GitLab