Skip to content

Commit 754e528

Browse files
authored
PYTHON-2915 Skip large txn test on slow Windows hosts (#788)
1 parent 6d1dd6d commit 754e528

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_transactions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@ def gridfs_open_upload_stream(*args, **kwargs):
289289
# Require 4.2+ for large (16MB+) transactions.
290290
@client_context.require_version_min(4, 2)
291291
@client_context.require_transactions
292+
@unittest.skipIf(sys.platform == 'win32',
293+
'Our Windows machines are too slow to pass this test')
292294
def test_transaction_starts_with_batched_write(self):
293295
if 'PyPy' in sys.version and client_context.tls:
294296
self.skipTest('PYTHON-2937 PyPy is so slow sending large '

0 commit comments

Comments
 (0)