From acc6605ea119ca62b4d9dbff07b62bbc7c86c3d8 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Wed, 5 Apr 2023 11:24:27 -0700 Subject: [PATCH] PYTHON-3522 Increase test timeout for Windows (#1181) Temporarily skip CSOT GridFS tests on Windows. --- test/csot/command-execution.json | 2 +- test/unified_format.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test/csot/command-execution.json b/test/csot/command-execution.json index 10f87d43a..f0858791e 100644 --- a/test/csot/command-execution.json +++ b/test/csot/command-execution.json @@ -52,7 +52,7 @@ ], "appName": "reduceMaxTimeMSTest", "blockConnection": true, - "blockTimeMS": 50 + "blockTimeMS": 75 } } } diff --git a/test/unified_format.py b/test/unified_format.py index 5afc74685..18130290b 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -947,6 +947,8 @@ class UnifiedSpecTestMixinV1(IntegrationTest): class_name = self.__class__.__name__.lower() description = spec["description"].lower() if "csot" in class_name: + if "gridfs" in class_name and sys.platform == "win32": + self.skipTest("PYTHON-3522 CSOT GridFS tests are flaky on Windows") if client_context.storage_engine == "mmapv1": self.skipTest( "MMAPv1 does not support retryable writes which is required for CSOT tests"