From 7bac6202eb595e5fd550ae02d78b18a282c92057 Mon Sep 17 00:00:00 2001 From: Debian Science Maintainers Date: Sun, 21 Jan 2024 09:38:29 +0000 Subject: [PATCH] Ignore missing HessianInversionWarning on some mips* Author: Rebecca N. Palmer Forwarded: no Gbp-Pq: Name mips_ignore_nonwarning.patch --- statsmodels/base/tests/test_generic_methods.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/statsmodels/base/tests/test_generic_methods.py b/statsmodels/base/tests/test_generic_methods.py index 9949920..a14fbab 100644 --- a/statsmodels/base/tests/test_generic_methods.py +++ b/statsmodels/base/tests/test_generic_methods.py @@ -10,6 +10,8 @@ Created on Wed Oct 30 14:01:27 2013 Author: Josef Perktold """ +import platform +import contextlib from statsmodels.compat.pytest import pytest_warns from statsmodels.compat.pandas import assert_index_equal, assert_series_equal from statsmodels.compat.platform import ( @@ -229,7 +231,7 @@ class CheckGenericMixin: start_params=sp, method=method, disp=0) else: - with pytest_warns(warn_cls): + with (contextlib.nullcontext() if ((warn_cls is not None) and ('mips' in platform.uname()[4])) else pytest_warns(warn_cls)): # more special casing RLM if (isinstance(self.results.model, (sm.RLM))): res1 = mod._fit_collinear() -- 2.30.2