Skip to content

Commit

Permalink
test(flink): disable pyarrow c stream test (#10476)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Nov 12, 2024
1 parent c9238bd commit 4492ad2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,10 @@ def test_memtable_construct_from_pyarrow(backend, con, monkeypatch):
)


def test_memtable_construct_from_pyarrow_c_stream(backend, con):
@pytest.mark.notimpl(
["flink"], raises=TypeError, reason="doesn't support pyarrow objects yet"
)
def test_memtable_construct_from_pyarrow_c_stream(con):
pa = pytest.importorskip("pyarrow")

class Opaque:
Expand Down

0 comments on commit 4492ad2

Please sign in to comment.