Issue #2504781 by neclimdul: Skip instead of fail migration tests if pdo_sqlite is missing
parent
fd671837e0
commit
7918441b48
|
@ -73,7 +73,7 @@ abstract class MigrateTestCase extends UnitTestCase {
|
||||||
$connection = new Connection($pdo, $connection_options);
|
$connection = new Connection($pdo, $connection_options);
|
||||||
}
|
}
|
||||||
else {
|
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.
|
// Initialize the DIC with a fake module handler for alterable queries.
|
||||||
|
|
Loading…
Reference in New Issue