From 56fd7af825ca249c9d541d3c1a9d73d6a1a577c6 Mon Sep 17 00:00:00 2001 From: Lorenzo Stella Date: Mon, 27 May 2024 14:55:36 +0200 Subject: [PATCH] Tests: xfail test for `fourier.arima.xreg` (#3182) *Issue #, if available:* See also #3099 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. **Please tag this pr with at least one of these labels to make our release process faster:** BREAKING, new feature, bug fix, other change, dev setup --- test/ext/r_forecast/test_r_univariate_predictor.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/ext/r_forecast/test_r_univariate_predictor.py b/test/ext/r_forecast/test_r_univariate_predictor.py index eb5b59115c..4eefa1bbb0 100644 --- a/test/ext/r_forecast/test_r_univariate_predictor.py +++ b/test/ext/r_forecast/test_r_univariate_predictor.py @@ -48,6 +48,10 @@ def test_forecasts(method_name): "MLP currently does not work because " "the `neuralnet` package is not yet updated with a known bug fix in ` bips-hb/neuralnet`" ) + if method_name == "fourier.arima.xreg": + pytest.xfail( + "Method `fourier.arima.xreg` does not work because of a known issue." + ) dataset = datasets.get_dataset("constant")