]> source.dussan.org Git - nextcloud-server.git/commitdiff
ci: Skip currently PHP 8.4 incompatible test ci/noid/php-8.4 49145/head
authorJoas Schilling <coding@schilljs.com>
Fri, 8 Nov 2024 11:55:00 +0000 (12:55 +0100)
committerJoas Schilling <coding@schilljs.com>
Fri, 8 Nov 2024 13:18:24 +0000 (14:18 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
apps/dav/tests/unit/Files/FileSearchBackendTest.php

index f6fe8b1c1160a395bb5771b4844975c5f192550c..aaa3d8c147ee8a0b3494806c8a859c1920063869 100644 (file)
@@ -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);