Skip to content

Commit

Permalink
TEST-#6846: Skip unstable Unidist to_csv tests (#6847)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Jan 19, 2024
1 parent 177fc13 commit 11b6f7a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modin/pandas/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1103,6 +1103,10 @@ def test_read_csv_wrong_path(self):
@pytest.mark.parametrize("index_label", [None, False, "New index"])
@pytest.mark.parametrize("columns", [None, ["col1", "col3", "col5"]])
@pytest.mark.exclude_in_sanity
@pytest.mark.skipif(
condition=Engine.get() == "Unidist" and os.name == "nt",
reason="https://github.com/modin-project/modin/issues/6846",
)
def test_to_csv(
self,
tmp_path,
Expand Down Expand Up @@ -1137,6 +1141,10 @@ def test_to_csv(
columns=columns,
)

@pytest.mark.skipif(
condition=Engine.get() == "Unidist" and os.name == "nt",
reason="https://github.com/modin-project/modin/issues/6846",
)
def test_dataframe_to_csv(self, tmp_path):
pandas_df = pandas.read_csv(pytest.csvs_names["test_read_csv_regular"])
modin_df = pd.DataFrame(pandas_df)
Expand All @@ -1147,6 +1155,10 @@ def test_dataframe_to_csv(self, tmp_path):
extension="csv",
)

@pytest.mark.skipif(
condition=Engine.get() == "Unidist" and os.name == "nt",
reason="https://github.com/modin-project/modin/issues/6846",
)
def test_series_to_csv(self, tmp_path):
pandas_s = pandas.read_csv(
pytest.csvs_names["test_read_csv_regular"], usecols=["col1"]
Expand Down

0 comments on commit 11b6f7a

Please sign in to comment.