diff --git a/tests/Doctrine/FunctionalTestCase.php b/tests/Doctrine/FunctionalTestCase.php index 5242131e..5584e143 100644 --- a/tests/Doctrine/FunctionalTestCase.php +++ b/tests/Doctrine/FunctionalTestCase.php @@ -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.'); }