From 05ece0c172ae1ea7887875dd18ddc6a366c6daa4 Mon Sep 17 00:00:00 2001 From: Arnav Garg <106701836+arnavgarg1@users.noreply.github.com> Date: Fri, 7 Oct 2022 17:09:36 -0700 Subject: [PATCH] Relax test constraint to reduce flakiness in test_ray (#2610) --- tests/integration_tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/utils.py b/tests/integration_tests/utils.py index a6ede91bd77..cc9110bf283 100644 --- a/tests/integration_tests/utils.py +++ b/tests/integration_tests/utils.py @@ -865,7 +865,7 @@ def filter(stats): for (name1, metric1), (name2, metric2) in zip(v1.items(), v2.items()): assert name1 == name2 assert np.isclose( - metric1, metric2, rtol=1e-04, atol=1e-5 + metric1, metric2, rtol=1e-03, atol=1e-04 ), f"metric {name1}: {metric1} != {metric2}" return model