Skip to content

Commit

Permalink
[CI] Skipped MaxLanguagesContentServiceTest::testCreateContent on non…
Browse files Browse the repository at this point in the history
…-LSE (#460)

For more details see #460

Key changes:

* [CI] Skipped MaxLanguagesContentServiceTest::testCreateContent on non-LSE (Solr, ES) due to extra configuration needed
  • Loading branch information
ViniTou authored Dec 10, 2024
1 parent 5401414 commit e8dc468
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e8dc468

Please sign in to comment.