Skip to content

Commit e24984e

Browse files
committed
Skip this hanging test
1 parent 9461d8d commit e24984e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pandas/tests/window/test_cython_aggregations.py

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
import pytest
66

77
import pandas._libs.window.aggregations as window_aggregations
8+
from pandas.compat import (
9+
is_ci_environment,
10+
is_platform_windows,
11+
)
812

913
from pandas import Series
1014
import pandas._testing as tm
@@ -86,6 +90,10 @@ def test_rolling_aggregation_boundary_consistency(rolling_aggregation):
8690
tm.assert_equal(expected, result)
8791

8892

93+
@pytest.mark.skipif(
94+
is_ci_environment() and is_platform_windows(),
95+
reason="Causes MemoryError on Windows",
96+
)
8997
def test_rolling_aggregation_with_unused_elements(rolling_aggregation):
9098
# GH-45647
9199
minp, width = 0, 5 # width at least 4 for kurt

0 commit comments

Comments
 (0)