From ff97fadfeea139ecad5f5637be2420b95ff7169c Mon Sep 17 00:00:00 2001 From: larkee <31196561+larkee@users.noreply.github.com> Date: Thu, 8 Oct 2020 10:37:14 +1100 Subject: [PATCH] test: skip failing list_backup_operations sample test (#150) Co-authored-by: larkee --- samples/samples/backup_sample_test.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/samples/samples/backup_sample_test.py b/samples/samples/backup_sample_test.py index 8d73c8acf12..7a95f1d5ccc 100644 --- a/samples/samples/backup_sample_test.py +++ b/samples/samples/backup_sample_test.py @@ -79,6 +79,12 @@ def test_restore_database(capsys): assert BACKUP_ID in out +@pytest.mark.skip( + reason=( + "failing due to a production bug" + "https://github.com/googleapis/python-spanner/issues/149" + ) +) def test_list_backup_operations(capsys, spanner_instance): backup_sample.list_backup_operations(INSTANCE_ID, DATABASE_ID) out, _ = capsys.readouterr()