From e8dc468dc9bdb4e8f69609ee8248ff60949972ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Parafi=C5=84ski?= Date: Tue, 10 Dec 2024 16:20:04 +0100 Subject: [PATCH] [CI] Skipped MaxLanguagesContentServiceTest::testCreateContent on non-LSE (#460) For more details see https://github.com/ibexa/core/pull/460 Key changes: * [CI] Skipped MaxLanguagesContentServiceTest::testCreateContent on non-LSE (Solr, ES) due to extra configuration needed --- .../ContentService/MaxLanguagesContentServiceTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/Core/Repository/ContentService/MaxLanguagesContentServiceTest.php b/tests/integration/Core/Repository/ContentService/MaxLanguagesContentServiceTest.php index 1885328cce..3fb4b8d4aa 100644 --- a/tests/integration/Core/Repository/ContentService/MaxLanguagesContentServiceTest.php +++ b/tests/integration/Core/Repository/ContentService/MaxLanguagesContentServiceTest.php @@ -42,6 +42,10 @@ protected function setUp(): void */ public function testCreateContent(): void { + if (getenv('SEARCH_ENGINE') !== 'legacy') { + self::markTestSkipped('Skipped on non-LSE as it requires specific configuration'); + } + $names = array_merge(...array_map( static fn (array $languageData): array => [ $languageData['languageCode'] => $languageData['name'] . ' name',