Skip to content

Commit

Permalink
Skip Doctrine tests for PHP 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Oct 14, 2018
1 parent 105fe7a commit 22cbcaf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Doctrine/FunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ protected function setUp()
{
parent::setUp();

if (version_compare(PHP_VERSION, '7.3') >= 0) {
$this->markTestSkipped('Doctrine 2.6.2 fails with PHP 7.3, waiting for 2.6.3 release.');
}

if (! GeometryEngineRegistry::has()) {
$this->markTestSkipped('This test requires a connection to a database.');
}
Expand Down

0 comments on commit 22cbcaf

Please sign in to comment.