Skip to content

Commit aea3f70

Browse files
committed
fix PDOException "could not find driver" when running tests
1 parent b1bf2c1 commit aea3f70

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Tests/app/Resources/config.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,13 @@
6161
'orm' => array(
6262
'auto_mapping' => true
6363
),
64-
'dbal' => array()
64+
'dbal' => array(
65+
'connections' => array(
66+
'default' => array(
67+
'driver' => 'pdo_sqlite',
68+
)
69+
)
70+
)
6571
));
6672
$container->loadFromExtension(
6773
'mink',

0 commit comments

Comments
 (0)