Skip to content

Commit

Permalink
Use the same password for all the DB in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Oct 23, 2024
1 parent 99c0d65 commit 2839203
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
host: '127.0.0.1',
port: 13306,
user: 'root',
password: 'root',
password: 'SSpaSS__1',
),
queryCache: true
),
Expand All @@ -34,7 +34,7 @@
host: '127.0.0.1',
port: 15432,
user: 'postgres',
password: 'postgres',
password: 'SSpaSS__1',
),
schema: 'public',
queryCache: true,
Expand All @@ -60,7 +60,7 @@
host: '127.0.0.1',
port: 15432,
user: 'postgres',
password: 'postgres',
password: 'SSpaSS__1',
),
schema: 'public',
driver: Database\Tests\Stub\Driver\PostgresWrapDriver::class,
Expand Down
4 changes: 2 additions & 2 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- "13306:3306"
environment:
MYSQL_DATABASE: "spiral"
MYSQL_ROOT_PASSWORD: "root"
MYSQL_ROOT_PASSWORD: "SSpaSS__1"
MYSQL_ROOT_HOST: "%"

postgres:
Expand All @@ -27,6 +27,6 @@ services:
environment:
POSTGRES_DB: "spiral"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_PASSWORD: "SSpaSS__1"

...

0 comments on commit 2839203

Please sign in to comment.