Skip to content

Commit

Permalink
xfail only for flink
Browse files Browse the repository at this point in the history
  • Loading branch information
jitingxu1 committed Jun 3, 2024
1 parent 131c11e commit 9644ee9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,10 +622,10 @@ def test_table_info(alltypes):
raises=PyDruidProgrammingError,
reason="Druid only supports trivial unions",
)
@pytest.mark.xfail(
reason="For flink: IOException - Insufficient number of network buffers"
)
def test_table_info_large(con):
if con.name == "flink":
pytest.xfail(reason="IOException - Insufficient number of network buffers")

Check warning on line 627 in ibis/backends/tests/test_generic.py

View check run for this annotation

Codecov / codecov/patch

ibis/backends/tests/test_generic.py#L627

Added line #L627 was not covered by tests

num_cols = 129
col_names = [f"col_{i}" for i in range(num_cols)]
t = ibis.memtable({col: [0, 1] for col in col_names})
Expand Down

0 comments on commit 9644ee9

Please sign in to comment.