From: Debian Science Maintainers Date: Sat, 19 Aug 2023 20:59:16 +0000 (+0100) Subject: Loosen tolerance on a possibly unstable test X-Git-Tag: archive/raspbian/0.14.0+dfsg-5+rpi1^2^2~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a1eeda486bfae07632560a8a9f682bfb779541aa;p=statsmodels.git Loosen tolerance on a possibly unstable test Author: Rebecca N. Palmer Bug-Debian: https://bugs.debian.org/1020060 and 1014278 Forwarded: https://github.com/statsmodels/statsmodels/issues/8341 Gbp-Pq: Name 1020060_loosen_test_tolerance.patch --- diff --git a/statsmodels/tsa/statespace/tests/test_dynamic_factor.py b/statsmodels/tsa/statespace/tests/test_dynamic_factor.py index 03eac1d..8200186 100644 --- a/statsmodels/tsa/statespace/tests/test_dynamic_factor.py +++ b/statsmodels/tsa/statespace/tests/test_dynamic_factor.py @@ -608,7 +608,7 @@ class TestDynamicFactor_ar2_errors(CheckDynamicFactor): res1.params, method='nm', maxiter=10000, optim_score='approx', disp=False) # Added rtol to catch spurious failures on some platforms - assert_allclose(res.llf, self.results.llf, atol=1e-2, rtol=1e-4) + assert_allclose(res.llf, self.results.llf, atol=1e-2, rtol=1e-2) class TestDynamicFactor_scalar_error(CheckDynamicFactor):