Skip to content

Commit ecdc3ef

Browse files
committed
change test db
1 parent 7d26acc commit ecdc3ef

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
name: phpList on PHP ${{ matrix.php-versions }} [Build, Test]
66
runs-on: ubuntu-22.04
77
env:
8-
DB_DATABASE: phplist
9-
DB_USERNAME: root
8+
DB_DATABASE: phplist_db_test
9+
DB_USERNAME: phplist
1010
DB_PASSWORD: phplist
1111
BROADCAST_DRIVER: log
1212
services:

config/config_test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ framework:
1111

1212
doctrine:
1313
dbal:
14-
driver: 'pdo_sqlite'
15-
memory: true
14+
driver: 'pdo_mysql'
15+
host: 'localhost'
16+
port: '3306'
17+
dbname: 'phplist_db_test'
18+
user: '%database_user%'
19+
password: '%database_password%'
1620
charset: UTF8
1721
# orm:
1822
# entity_managers:

0 commit comments

Comments
 (0)