From 8a50e15c7d848ae5f7935ee8b9266e720c3648a3 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Fri, 9 Mar 2018 06:42:15 +0100 Subject: [PATCH] Skip sharding test on master branch --- tests/Doctrine/ODM/MongoDB/Tests/SchemaManagerTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Doctrine/ODM/MongoDB/Tests/SchemaManagerTest.php b/tests/Doctrine/ODM/MongoDB/Tests/SchemaManagerTest.php index 400fac039d..bb1ddd9802 100644 --- a/tests/Doctrine/ODM/MongoDB/Tests/SchemaManagerTest.php +++ b/tests/Doctrine/ODM/MongoDB/Tests/SchemaManagerTest.php @@ -557,6 +557,8 @@ public function testEnsureDocumentShardingIgnoresAlreadyShardedError() public function testEnsureDocumentShardingWithShardByReference() { + $this->markTestSkipped('Sharding support is still WIP'); + $dbName = DOCTRINE_MONGODB_DATABASE; $classMetadata = $this->dm->getClassMetadata(\Documents\Sharded\ShardedByUser::class); $collectionName = $classMetadata->getCollection();