From 992e7662a730408db2dfd41a360d47a88709dea4 Mon Sep 17 00:00:00 2001 From: JigyasuRajput Date: Tue, 18 Feb 2025 11:33:42 +0000 Subject: [PATCH] Increase tolerance in TestGARCH11::test_batched_size to reduce flakiness --- tests/distributions/test_timeseries.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/distributions/test_timeseries.py b/tests/distributions/test_timeseries.py index 197296a5a4..67239e2eae 100644 --- a/tests/distributions/test_timeseries.py +++ b/tests/distributions/test_timeseries.py @@ -818,6 +818,8 @@ def test_batched_size(self, explicit_shape, batched_param): np.testing.assert_allclose( t0.compile_logp()(t0.initial_point()), t1.compile_logp()(t1.initial_point()), + atol=1e-3, + rtol=1e-2, ) @pytest.mark.parametrize(