PYTHON-3951: [Temporary] Skip list search index Unified Tests (#1385)
This commit is contained in:
parent
8de5c5932d
commit
cbd61c5236
@ -1580,7 +1580,7 @@ tasks:
|
||||
commands:
|
||||
- func: "bootstrap mongo-orchestration"
|
||||
vars:
|
||||
VERSION: "latest"
|
||||
VERSION: "6.0"
|
||||
TOPOLOGY: "replica_set"
|
||||
- func: "run tests"
|
||||
vars:
|
||||
|
||||
@ -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()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user