We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9461d8d commit e24984eCopy full SHA for e24984e
pandas/tests/window/test_cython_aggregations.py
@@ -5,6 +5,10 @@
5
import pytest
6
7
import pandas._libs.window.aggregations as window_aggregations
8
+from pandas.compat import (
9
+ is_ci_environment,
10
+ is_platform_windows,
11
+)
12
13
from pandas import Series
14
import pandas._testing as tm
@@ -86,6 +90,10 @@ def test_rolling_aggregation_boundary_consistency(rolling_aggregation):
86
90
tm.assert_equal(expected, result)
87
91
88
92
93
+@pytest.mark.skipif(
94
+ is_ci_environment() and is_platform_windows(),
95
+ reason="Causes MemoryError on Windows",
96
89
97
def test_rolling_aggregation_with_unused_elements(rolling_aggregation):
98
# GH-45647
99
minp, width = 0, 5 # width at least 4 for kurt
0 commit comments