Skip to content

Commit

Permalink
TST: Mark test as slow
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Oct 30, 2024
1 parent c94198e commit 1c325cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions arch/tests/univariate/test_mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -1452,6 +1452,7 @@ def test_non_contiguous_input(use_numpy):
assert res.params.shape[0] == 3


@pytest.mark.slow
def test_fixed_equivalence(fit_fixed_models):
res, res_fixed = fit_fixed_models

Expand Down
2 changes: 1 addition & 1 deletion arch/univariate/mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ def forecast(
lrvp = np.squeeze(lrvp)
if lrvp.ndim < 2:
lrvp = np.atleast_1d(lrvp)
lrvp = lrvp[None, :]
lrvp = lrvp[:, None]
long_run_variance_paths[:, :, i] = lrvp
t, m = self._y.shape[0], self._max_lags
mean_paths = np.empty(shocks.shape[:2] + (m + horizon,))
Expand Down

0 comments on commit 1c325cc

Please sign in to comment.