Skip to content

Commit cbe6adf

Browse files
committed
Skip DocumentManagerIntegrationTest on PHP 8, some weird dep version gets installed causing the test to fail
1 parent 50314a9 commit cbe6adf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/DoctrineIntegration/ODM/DocumentManagerIntegrationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ final class DocumentManagerIntegrationTest extends LevelsTestCase
1212
*/
1313
public function dataTopics(): array
1414
{
15+
if (PHP_VERSION_ID >= 80000) {
16+
return [];
17+
}
18+
1519
return [
1620
['documentManagerDynamicReturn'],
1721
['documentRepositoryDynamicReturn'],

0 commit comments

Comments
 (0)