diff --git a/test/connection_logging/connection-pool-options.json b/test/connection_logging/connection-pool-options.json index 21520bf31..7055a5486 100644 --- a/test/connection_logging/connection-pool-options.json +++ b/test/connection_logging/connection-pool-options.json @@ -300,7 +300,6 @@ }, { "description": "waitQueueSize should be included in connection pool created message when specified", - "skipReason": "PyMongo does not support waitQueueSize", "operations": [ { "name": "createEntities", @@ -379,7 +378,6 @@ }, { "description": "waitQueueMultiple should be included in connection pool created message when specified", - "skipReason": "PyMongo does not support waitQueueMultiple", "operations": [ { "name": "createEntities", @@ -457,4 +455,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/connection_monitoring/pool-checkout-maxConnecting-is-enforced.json b/test/connection_monitoring/pool-checkout-maxConnecting-is-enforced.json index 732478bf7..3a63818bf 100644 --- a/test/connection_monitoring/pool-checkout-maxConnecting-is-enforced.json +++ b/test/connection_monitoring/pool-checkout-maxConnecting-is-enforced.json @@ -19,7 +19,7 @@ ], "closeConnection": false, "blockConnection": true, - "blockTimeMS": 750 + "blockTimeMS": 800 } }, "poolOptions": { @@ -53,7 +53,7 @@ }, { "name": "wait", - "ms": 100 + "ms": 400 }, { "name": "checkOut", diff --git a/test/unified_format.py b/test/unified_format.py index bf0420dc0..c65920cbc 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -495,6 +495,10 @@ class EntityMapUtil: kwargs["h"] = client_context.mongos_seeds() kwargs.update(spec.get("uriOptions", {})) server_api = spec.get("serverApi") + if "waitQueueSize" in kwargs: + raise unittest.SkipTest("PyMongo does not support waitQueueSize") + if "waitQueueMultiple" in kwargs: + raise unittest.SkipTest("PyMongo does not support waitQueueMultiple") if server_api: kwargs["server_api"] = ServerApi( server_api["version"],