Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST-#1119: Re-enable skipped Windows tests for DataFrame.prod #1801

Merged
merged 1 commit into from
Jul 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
TEST-#1119: Re-enable skipped Windows tests for DataFrame.prod
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
  • Loading branch information
devin-petersohn committed Jul 24, 2020
commit cfb94e87be3b5229233004455f219ec87cc6470b
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