Skip to content

Commit

Permalink
test(bigquery): make test non-strict xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 10, 2024
1 parent b106429 commit 2fafd5c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1803,6 +1803,9 @@ def test_insert_into_table_missing_columns(con, temp_table):
raises=AssertionError,
reason="can't execute SQL inside of a finalizer without breaking everything",
)
@pytest.mark.notyet(
["bigquery"], raises=AssertionError, reason="test is flaky", strict=False
)
def test_memtable_cleanup(con):
name = ibis.util.gen_name("temp_memtable")
t = ibis.memtable({"a": [1, 2, 3], "b": list("def")}, name=name)
Expand Down

0 comments on commit 2fafd5c

Please sign in to comment.