We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4eeee9 commit 4d3e773Copy full SHA for 4d3e773
.github/actions/test-gentoo/action.yml
@@ -18,6 +18,10 @@ runs:
18
fi
19
export PDO_MYSQL_TEST_USER=ci
20
export PDO_MYSQL_TEST_PASS=ci
21
+ export PGSQL_TEST_CONNSTR="host=localhost dbname=test port=5432 user=ci password=ci"
22
+ if [[ -z "$PDO_PGSQL_TEST_DSN" ]]; then
23
+ export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=ci password=ci"
24
+ fi
25
# Slow tests criteron is doubled because this runner isn't as fast as others
26
export SKIP_IO_CAPTURE_TESTS=1
27
export STACK_LIMIT_DEFAULTS_CHECK=1
0 commit comments