Skip to content

Commit bfcd1b1

Browse files
Revert "TEST-#1119: Re-enable skipped Windows tests for DataFrame.prod (#1801)"
This reverts commit d8a9972.
1 parent d8a9972 commit bfcd1b1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

modin/pandas/test/test_dataframe.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import numpy as np
1616
import pandas
1717
import pandas.util.testing as tm
18+
import os
1819
import matplotlib
1920
import modin.pandas as pd
2021
from modin.pandas.utils import to_pandas
@@ -3385,6 +3386,10 @@ def test_min(self, data, axis, skipna, numeric_only):
33853386
)
33863387
df_equals(modin_result, pandas_result)
33873388

3389+
@pytest.mark.skipif(
3390+
os.name == "nt",
3391+
reason="Windows has a memory issue for large numbers on this test",
3392+
)
33883393
@pytest.mark.parametrize("data", test_data_values, ids=test_data_keys)
33893394
@pytest.mark.parametrize("axis", axis_values, ids=axis_keys)
33903395
@pytest.mark.parametrize(
@@ -3436,6 +3441,10 @@ def test_prod(self, request, data, axis, skipna, numeric_only, min_count):
34363441
)
34373442
df_equals(modin_result, pandas_result)
34383443

3444+
@pytest.mark.skipif(
3445+
os.name == "nt",
3446+
reason="Windows has a memory issue for large numbers on this test",
3447+
)
34393448
@pytest.mark.parametrize("data", test_data_values, ids=test_data_keys)
34403449
@pytest.mark.parametrize("axis", axis_values, ids=axis_keys)
34413450
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)