Skip to content

Commit

Permalink
FEAT-#1844: skip tests with segmentation fault
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 Nov 3, 2020
1 parent c668747 commit b27e2bf
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 @@ -40,7 +40,7 @@
IO_OPS_DATA_DIR,
)

from modin.config import Engine, Backend
from modin.config import Engine, Backend, IsExperimental

if Backend.get() == "Pandas":
import modin.pandas as pd
Expand Down Expand Up @@ -495,6 +495,10 @@ def teardown_fwf_file():
pass


@pytest.mark.skipif(
IsExperimental.get() and Backend.get() == "Pyarrow",
reason="Segmentation fault; see PR #2347 ffor details",
)
class TestReadCSV:
# delimiter tests
@pytest.mark.parametrize("sep", ["_", ",", ".", "\n"])
Expand Down

0 comments on commit b27e2bf

Please sign in to comment.