Skip to content

Commit

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

Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
devin-petersohn authored and aregm committed Sep 16, 2020
1 parent 20e3136 commit c3f27d5
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions modin/pandas/test/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
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 @@ -3386,10 +3385,6 @@ 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 @@ -3441,10 +3436,6 @@ 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 c3f27d5

Please sign in to comment.