Skip to content

Commit

Permalink
TEST-modin-project#2295: mark xfailed tests
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Myskov <alexander.myskov@intel.com>
  • Loading branch information
amyskov committed Dec 3, 2020
1 parent 08c3b07 commit 9e00350
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modin/pandas/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ def test_read_csv_file_format(
escapechar,
dialect,
):
if request.config.getoption("--simulate-cloud").lower() != "off" and dialect:
if request.config.getoption("--simulate-cloud").lower() != "off":
pytest.xfail(
"The reason of tests fail in `cloud` mode is unknown for now - issue #2340"
)
Expand All @@ -921,6 +921,10 @@ def test_read_csv_file_format(
pytest.xfail(
"read_csv with Ray engine fails with some 'escapechar' parameters - issue #2494"
)
elif Engine.get() != "Python" and dialect:
pytest.xfail(
"read_csv with Ray engine fails with `dialect` parameter - issue #2508"
)

unique_filename = get_unique_filename()
if dialect:
Expand Down

0 comments on commit 9e00350

Please sign in to comment.