From 1a74912ad65f36d267ac55c3089ad8a1ce17d338 Mon Sep 17 00:00:00 2001 From: Peter Lamut Date: Mon, 2 Sep 2019 09:16:58 +0200 Subject: [PATCH] Disable failing snippets test test_copy_table_cmek() results in internal error on the backend, causing the test to fail, thus the test is marked as skipped. --- bigquery/docs/snippets.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bigquery/docs/snippets.py b/bigquery/docs/snippets.py index 4c39ff912230..387f35dfac07 100644 --- a/bigquery/docs/snippets.py +++ b/bigquery/docs/snippets.py @@ -1393,6 +1393,7 @@ def test_copy_table_multiple_source(client, to_delete): assert dest_table.num_rows == 2 +@pytest.mark.skip(reason="Backend responds with a 500 internal error.") def test_copy_table_cmek(client, to_delete): dataset_id = "copy_table_cmek_{}".format(_millis()) dest_dataset = bigquery.Dataset(client.dataset(dataset_id))