From 67a28ce30fb5ed6b187d0e9d5f664959659c432d Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Thu, 30 Mar 2023 08:41:10 -0700 Subject: [PATCH] Relax test tolerances for testLogisticPpf. Fixes a test failure in CI. PiperOrigin-RevId: 520649225 --- tests/scipy_stats_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scipy_stats_test.py b/tests/scipy_stats_test.py index 8ef546d0a..b2e4cf199 100644 --- a/tests/scipy_stats_test.py +++ b/tests/scipy_stats_test.py @@ -603,7 +603,7 @@ class LaxBackedScipyStatsTests(jtu.JaxTestCase): with jtu.strict_promotion_if_dtypes_match(dtypes): self._CheckAgainstNumpy(scipy_fun, lax_fun, args_maker, check_dtypes=False, - tol=1e-4) + atol=1e-3, rtol=1e-3) self._CompileAndCheck(lax_fun, args_maker, rtol=3e-4) @genNamedParametersNArgs(3)