From 298948c28ce2d01446e718f6cf96e8fe0a444c6c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 8 Nov 2024 12:55:00 +0100 Subject: [PATCH] ci: Skip currently PHP 8.4 incompatible test Signed-off-by: Joas Schilling --- apps/dav/tests/unit/Files/FileSearchBackendTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/dav/tests/unit/Files/FileSearchBackendTest.php b/apps/dav/tests/unit/Files/FileSearchBackendTest.php index f6fe8b1c116..aaa3d8c147e 100644 --- a/apps/dav/tests/unit/Files/FileSearchBackendTest.php +++ b/apps/dav/tests/unit/Files/FileSearchBackendTest.php @@ -55,6 +55,10 @@ class FileSearchBackendTest extends TestCase { private $davFolder; protected function setUp(): void { + if (PHP_VERSION_ID >= 80400) { + $this->markTestSkipped('SearchDAV is not yet PHP 8.4 compatible'); + } + parent::setUp(); $this->user = $this->createMock(IUser::class); -- 2.39.5