From 3d64045a64707b587e44825ca05aca6bddc7cd1e Mon Sep 17 00:00:00 2001 From: Peter Lamut Date: Mon, 2 Sep 2019 22:50:55 +0200 Subject: [PATCH] Disable failing snippets test (#9156) 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 9b9e3b6814b5..d97e588082ca 100644 --- a/bigquery/docs/snippets.py +++ b/bigquery/docs/snippets.py @@ -1369,6 +1369,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))