aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/tests
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-12-12 12:14:40 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-12-12 12:14:40 +0100
commita1661af17c9054a6c399dd9d5220f8d6a5091fa2 (patch)
tree126a64f79b8b840b9b4c2b876f4da64eb5dc3f03 /app/config/tests
parentf209798368de66b4acd8b892fe71018ebb30c2da (diff)
downloadwallabag-a1661af17c9054a6c399dd9d5220f8d6a5091fa2.tar.gz
wallabag-a1661af17c9054a6c399dd9d5220f8d6a5091fa2.tar.zst
wallabag-a1661af17c9054a6c399dd9d5220f8d6a5091fa2.zip
Add custom driver & schema manager for PostgreSQL 10
Diffstat (limited to 'app/config/tests')
-rw-r--r--app/config/tests/parameters_test.mysql.yml1
-rw-r--r--app/config/tests/parameters_test.pgsql.yml1
-rw-r--r--app/config/tests/parameters_test.sqlite.yml1
3 files changed, 3 insertions, 0 deletions
diff --git a/app/config/tests/parameters_test.mysql.yml b/app/config/tests/parameters_test.mysql.yml
index 36b227fb..0b7b82eb 100644
--- a/app/config/tests/parameters_test.mysql.yml
+++ b/app/config/tests/parameters_test.mysql.yml
@@ -1,5 +1,6 @@
1parameters: 1parameters:
2 test_database_driver: pdo_mysql 2 test_database_driver: pdo_mysql
3 test_database_driver_class: ~
3 test_database_host: localhost 4 test_database_host: localhost
4 test_database_port: 3306 5 test_database_port: 3306
5 test_database_name: wallabag_test 6 test_database_name: wallabag_test
diff --git a/app/config/tests/parameters_test.pgsql.yml b/app/config/tests/parameters_test.pgsql.yml
index 60f51df6..ea249324 100644
--- a/app/config/tests/parameters_test.pgsql.yml
+++ b/app/config/tests/parameters_test.pgsql.yml
@@ -1,5 +1,6 @@
1parameters: 1parameters:
2 test_database_driver: pdo_pgsql 2 test_database_driver: pdo_pgsql
3 test_database_driver_class: Wallabag\CoreBundle\Doctrine\DBAL\Driver\CustomPostgreSQLDriver
3 test_database_host: localhost 4 test_database_host: localhost
4 test_database_port: 5 test_database_port:
5 test_database_name: wallabag_test 6 test_database_name: wallabag_test
diff --git a/app/config/tests/parameters_test.sqlite.yml b/app/config/tests/parameters_test.sqlite.yml
index 2b92d579..64cd984b 100644
--- a/app/config/tests/parameters_test.sqlite.yml
+++ b/app/config/tests/parameters_test.sqlite.yml
@@ -1,5 +1,6 @@
1parameters: 1parameters:
2 test_database_driver: pdo_sqlite 2 test_database_driver: pdo_sqlite
3 test_database_driver_class: ~
3 test_database_host: localhost 4 test_database_host: localhost
4 test_database_port: 5 test_database_port:
5 test_database_name: ~ 6 test_database_name: ~