Skip to content

Commit 9f2b024

Browse files
committed
try again to fix integration tests
1 parent 0b455ea commit 9f2b024

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- "18.1"
4545

4646
env:
47-
POSTGRES_URI: 'pdo-pgsql://postgres:postgres@localhost:5432/eventstore?charset=utf8'
47+
POSTGRES_URI: 'pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres'
4848

4949
steps:
5050
- name: "Checkout"

tests/PostgresIntegrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ final class PostgresIntegrationTest extends IntegrationTest
1414
{
1515
protected function setUp(): void
1616
{
17-
parent::setUp();
18-
1917
getenv('POSTGRES_URI') ?: $this->markTestSkipped('POSTGRES_URI is not set');
18+
19+
parent::setUp();
2020
}
2121

2222
protected function getClient(): Client

0 commit comments

Comments
 (0)