Issue #2504781 by neclimdul: Skip instead of fail migration tests if pdo_sqlite is missing

8.0.x
Alex Pott 2015-06-14 22:16:25 +01:00
parent fd671837e0
commit 7918441b48
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ abstract class MigrateTestCase extends UnitTestCase {
$connection = new Connection($pdo, $connection_options);
}
else {
throw new \Exception('pdo_sqlite extension is required.');
$this->markTestSkipped('The pdo_sqlite extension is not available.');
}
// Initialize the DIC with a fake module handler for alterable queries.