Skip to content

Commit

Permalink
FIX-modin-project#2408: remove the test removed from master branch
Browse files Browse the repository at this point in the history
Signed-off-by: Weiwen Gu <[email protected]>
  • Loading branch information
staftermath committed Dec 10, 2020
1 parent 62b3ef8 commit 20c8ef5
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions modin/pandas/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1461,21 +1461,6 @@ def test_from_sas():
df_equals(modin_df, pandas_df)


@pytest.mark.parametrize("nrows", [123, None])
def test_from_csv(make_csv_file, nrows):
make_csv_file()

pandas_df = pandas.read_csv(TEST_CSV_FILENAME, nrows=nrows)
modin_df = pd.read_csv(TEST_CSV_FILENAME, nrows=nrows)

df_equals(modin_df, pandas_df)

pandas_df = pandas.read_csv(Path(TEST_CSV_FILENAME), nrows=nrows)
modin_df = pd.read_csv(Path(TEST_CSV_FILENAME), nrows=nrows)

df_equals(modin_df, pandas_df)


def test_from_csv_within_decorator(make_csv_file):
make_csv_file()

Expand Down

0 comments on commit 20c8ef5

Please sign in to comment.