We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b455ea commit 9f2b024Copy full SHA for 9f2b024
2 files changed
.github/workflows/integration.yml
@@ -44,7 +44,7 @@ jobs:
44
- "18.1"
45
46
env:
47
- POSTGRES_URI: 'pdo-pgsql://postgres:postgres@localhost:5432/eventstore?charset=utf8'
+ POSTGRES_URI: 'pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres'
48
49
steps:
50
- name: "Checkout"
tests/PostgresIntegrationTest.php
@@ -14,9 +14,9 @@ final class PostgresIntegrationTest extends IntegrationTest
14
{
15
protected function setUp(): void
16
17
- parent::setUp();
18
-
19
getenv('POSTGRES_URI') ?: $this->markTestSkipped('POSTGRES_URI is not set');
+
+ parent::setUp();
20
}
21
22
protected function getClient(): Client
0 commit comments