Skip to content

Commit

Permalink
Revert "TEST-modin-project#1119: Re-enable skipped Windows tests for …
Browse files Browse the repository at this point in the history
…`DataFrame.prod`" (modin-project#1813)

This reverts commit d8a9972.
  • Loading branch information
devin-petersohn authored and aregm committed Sep 16, 2020
1 parent c3f27d5 commit 66821e0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions modin/pandas/test/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import numpy as np
import pandas
import pandas.util.testing as tm
import os
import matplotlib
import modin.pandas as pd
from modin.pandas.utils import to_pandas
Expand Down Expand Up @@ -3385,6 +3386,10 @@ def test_min(self, data, axis, skipna, numeric_only):
)
df_equals(modin_result, pandas_result)

@pytest.mark.skipif(
os.name == "nt",
reason="Windows has a memory issue for large numbers on this test",
)
@pytest.mark.parametrize("data", test_data_values, ids=test_data_keys)
@pytest.mark.parametrize("axis", axis_values, ids=axis_keys)
@pytest.mark.parametrize(
Expand Down Expand Up @@ -3436,6 +3441,10 @@ def test_prod(self, request, data, axis, skipna, numeric_only, min_count):
)
df_equals(modin_result, pandas_result)

@pytest.mark.skipif(
os.name == "nt",
reason="Windows has a memory issue for large numbers on this test",
)
@pytest.mark.parametrize("data", test_data_values, ids=test_data_keys)
@pytest.mark.parametrize("axis", axis_values, ids=axis_keys)
@pytest.mark.parametrize(
Expand Down

0 comments on commit 66821e0

Please sign in to comment.