From 9cecbb2ae590adc00b8994dbcd750fec34fc6738 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Wed, 28 Feb 2018 13:05:05 -0800 Subject: [PATCH] PYTHON-1491 Skip failing OP_KILL_CURSORS test --- test/test_legacy_api.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_legacy_api.py b/test/test_legacy_api.py index d275f7f96..0da2ceac7 100644 --- a/test/test_legacy_api.py +++ b/test/test_legacy_api.py @@ -1371,6 +1371,10 @@ class TestLegacy(IntegrationTest): wait_until(raises_cursor_not_found, 'close cursor') def test_kill_cursors_with_tuple(self): + if (client_context.version[:2] == (3, 6) + and client_context.auth_enabled): + raise SkipTest("SERVER-33553") + coll = self.client.pymongo_test.test coll.drop()