PYTHON-3951: [Temporary] Skip list search index Unified Tests (#1385)

This commit is contained in:
Jib 2023-10-05 21:51:42 -04:00 committed by GitHub
parent 8de5c5932d
commit cbd61c5236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 6 deletions

View File

@ -1580,7 +1580,7 @@ tasks:
commands:
- func: "bootstrap mongo-orchestration"
vars:
VERSION: "latest"
VERSION: "6.0"
TOPOLOGY: "replica_set"
- func: "run tests"
vars:

View File

@ -214,12 +214,23 @@ class TestSearchIndexProse(unittest.TestCase):
coll0.drop_search_index("foo")
globals().update(
generate_test_classes(
_TEST_PATH,
module=__name__,
if os.environ.get("TEST_INDEX_MANAGEMENT"):
globals().update(
generate_test_classes(
_TEST_PATH,
module=__name__,
)
)
)
else:
class TestIndexManagementUnifiedTests(unittest.TestCase):
@classmethod
def setUpClass(cls) -> None:
raise unittest.SkipTest("Skipping index management pending PYTHON-3951")
def test_placeholder(self):
pass
if __name__ == "__main__":
unittest.main()