Skip to content

Commit

Permalink
Fix prefer lowest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Mar 11, 2021
1 parent a3aa3e4 commit ce6d9b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Tests/Application/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ public function registerBundles()
{
$bundles = parent::registerBundles();
$bundles[] = new SuluArticleBundle();
$bundles[] = new ONGRElasticsearchBundle();

if ('phpcr' === $this->config) {
$bundles[] = new ONGRElasticsearchBundle();
}

if ('extend' === getenv('ARTICLE_TEST_CASE')) {
$bundles[] = new TestExtendBundle();
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"jms/serializer": "^3.3",
"jms/serializer-bundle": "^3.3",
"ramsey/uuid": "^3.1 || ^4.0",
"sulu/sulu": "^2.0.10 || ^2.1@dev",
"sulu/sulu": "^2.1 || ^2.3@dev",
"symfony/config": "^4.3 || ^5.0",
"symfony/dependency-injection": "^4.3 || ^5.0",
"symfony/http-foundation": "^4.3 || ^5.0",
Expand Down

0 comments on commit ce6d9b8

Please sign in to comment.