Skip to content

Commit

Permalink
TEST-#1119: Re-enable skipped Windows tests for DataFrame.prod
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
  • Loading branch information
devin-petersohn committed Jul 24, 2020
1 parent 8472cf1 commit cfb94e8
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 @@ -3374,10 +3373,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 @@ -3429,10 +3424,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 cfb94e8

Please sign in to comment.