From 2fafd5c828c5fc969ba73d25dc8243eb3120ab3a Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:50:45 -0400 Subject: [PATCH] test(bigquery): make test non-strict xfail --- ibis/backends/tests/test_client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ibis/backends/tests/test_client.py b/ibis/backends/tests/test_client.py index 5411eb2d05cb..f2d4a2adcebe 100644 --- a/ibis/backends/tests/test_client.py +++ b/ibis/backends/tests/test_client.py @@ -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)