Skip to content

Commit

Permalink
Test: xfail test for fourier.arima.xreg
Browse files Browse the repository at this point in the history
  • Loading branch information
lostella committed May 27, 2024
1 parent b1e054a commit ec80695
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion test/ext/r_forecast/test_r_univariate_predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,20 @@
TOLERANCE = 1e-6


@pytest.mark.parametrize("method_name", SUPPORTED_UNIVARIATE_METHODS)
@pytest.mark.parametrize(
"method_name",
[
(
method_name
if method_name != "fourier.arima.xreg"
else pytest.param(
"fourier.arima.xreg",
marks=pytest.mark.xfail(reason="Known bug"),
)
)
for method_name in SUPPORTED_UNIVARIATE_METHODS
],
)
def test_forecasts(method_name):
if method_name == "mlp":
# https://stackoverflow.com/questions/56254321/error-in-ifncol-matrix-rep-argument-is-of-length-zero
Expand Down

0 comments on commit ec80695

Please sign in to comment.