aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-11-08 12:55:00 +0100
committerJoas Schilling <coding@schilljs.com>2024-11-08 14:18:24 +0100
commit298948c28ce2d01446e718f6cf96e8fe0a444c6c (patch)
tree795cbd42d8bac3e982dd14e0b811cc39829eec2d /apps
parent73de40719e6c6f4e100df7d42f402f00f3e71403 (diff)
downloadnextcloud-server-298948c28ce2d01446e718f6cf96e8fe0a444c6c.tar.gz
nextcloud-server-298948c28ce2d01446e718f6cf96e8fe0a444c6c.zip
ci: Skip currently PHP 8.4 incompatible testci/noid/php-8.4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/Files/FileSearchBackendTest.php4
1 files changed, 4 insertions, 0 deletions
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);