We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefb58d commit 4a3e066Copy full SHA for 4a3e066
test/unified_format.py
@@ -544,6 +544,12 @@ def setUpClass(cls):
544
raise unittest.SkipTest(
545
'%s runOnRequirements not satisfied' % (cls.__name__,))
546
547
+ # add any special-casing for skipping tests here
548
+ if (cls.TEST_SPEC['description'] == 'poc-retryable-writes'
549
+ and client_context.storage_engine == 'mmapv1'):
550
+ raise unittest.skipTest(
551
+ "MMAPv1 does not support retryWrites=True")
552
+
553
@classmethod
554
def tearDownClass(cls):
555
super(UnifiedSpecTestMixinV1, cls).tearDownClass()
0 commit comments