Skip to content

Commit 8f839f3

Browse files
committed
PHPLIB-715 Skip failing mapReduce test
1 parent 633c8f1 commit 8f839f3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/SpecTests/RetryableReadsSpecTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ class RetryableReadsSpecTest extends FunctionalTestCase
2525
'listIndexNames' => 'Not implemented',
2626
];
2727

28+
/** @var array */
29+
private static $incompleteTests = [
30+
'mapReduce: MapReduce succeeds with retry on' => 'PHPLIB-715',
31+
];
32+
2833
/**
2934
* Assert that the expected and actual command documents match.
3035
*
@@ -66,6 +71,10 @@ public function testRetryableReads(stdClass $test, ?array $runOn = null, $data,
6671
$this->skipIfChangeStreamIsNotSupported();
6772
}
6873

74+
if (isset(self::$incompleteTests[$this->dataDescription()])) {
75+
$this->markTestIncomplete(self::$incompleteTests[$this->dataDescription()]);
76+
}
77+
6978
$context = Context::fromRetryableReads($test, $databaseName, $collectionName, $bucketName);
7079
$this->setContext($context);
7180

0 commit comments

Comments
 (0)