Skip to content

Commit

Permalink
travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Apr 18, 2020
1 parent 7d6a282 commit a7b73fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ matrix:
# next-to-latest version currently available of eZPlatform 2
# sensio/generator-bundle is only needed because we run the tests using 'behat' sf env
- php: 7.2
env: EZ_PACKAGES='ezsystems/ezplatform:~2.4.2 ezsystems/ezplatform-xmltext-fieldtype:^1.8 ezsystems/behatbundle:^6.5 netgen/tagsbundle:^3.4 sensio/generator-bundle' EZ_VERSION=ezplatform2 KERNEL_CLASS=AppKernel KERNEL_DIR=vendor/ezsystems/ezplatform/app CODE_COVERAGE=0 INSTALL_TAGSBUNDLE=1
env: EZ_PACKAGES='ezsystems/ezplatform:~2.4.2 ezsystems/ezplatform-xmltext-fieldtype:^1.8 ezsystems/behatbundle:^6.5 netgen/tagsbundle:^3.3 sensio/generator-bundle' EZ_VERSION=ezplatform2 KERNEL_CLASS=AppKernel KERNEL_DIR=vendor/ezsystems/ezplatform/app CODE_COVERAGE=0 INSTALL_TAGSBUNDLE=1
# latest version currently available of eZPlatform 2 - currently 2.5, which is also LTS
- php: 7.3
env: EZ_PACKAGES='ezsystems/ezplatform:^2.5.9 ezsystems/ezplatform-xmltext-fieldtype:^1.9 ezsystems/behatbundle:^6.5 netgen/tagsbundle:^3.4 sensio/generator-bundle overblog/graphiql-bundle' EZ_VERSION=ezplatform2 KERNEL_CLASS=AppKernel KERNEL_DIR=vendor/ezsystems/ezplatform/app CODE_COVERAGE=0 INSTALL_TAGSBUNDLE=1
Expand Down
2 changes: 1 addition & 1 deletion Tests/phpunit/1_GenerateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function provideGenerateParameters()

/// @todo we should create some tags before running these...
// try to make this work across phpunit versions, which run this before/after calling setUp()
$container = $this->getContainer() == null ? $this->bootContainer() : $this->getContainer()();
$container = $this->getContainer() == null ? $this->bootContainer() : $this->getContainer();
$bundles = $container->getParameter('kernel.bundles');
if (isset($bundles['NetgenTagsBundle'])) {
$out[] = array('unit_test_generated_tags', null, 'tag', 'all', null);
Expand Down
2 changes: 1 addition & 1 deletion Tests/phpunit/3_TagsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function goodDSLProvider()
$dslDir = $this->dslDir.'/eztags';

// try to make this work across phpunit versions, which run this before/after calling setUp()
$container = $this->getContainer() == null ? $this->bootContainer() : $this->getContainer()();
$container = $this->getContainer() == null ? $this->bootContainer() : $this->getContainer();
$tagsFieldType = $container->get('ezpublish.fieldType.eztags');
$settingsSchema = $tagsFieldType->getSettingsSchema();
if (isset($settingsSchema['subTreeLimit'])) {
Expand Down

0 comments on commit a7b73fd

Please sign in to comment.