File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ matrix:
27
27
# Run tests/paths that require password authentication
28
28
- node_js : lts/erbium
29
29
env :
30
- - CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres PGPASSWORD=test-password
30
+ - CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres PGPASSWORD=test-password SCRAM_TEST_PGUSER=scram_test SCRAM_TEST_PGPASSWORD=test4scram
31
31
before_script : |
32
32
sudo -u postgres sed -i \
33
33
-e '/^local/ s/trust$/peer/' \
@@ -36,6 +36,9 @@ matrix:
36
36
sudo -u postgres psql -c "ALTER ROLE postgres PASSWORD 'test-password'; SELECT pg_reload_conf()"
37
37
yarn build
38
38
node packages/pg/script/create-test-tables.js postgresql:///
39
+ sudo -u postgres -- psql \
40
+ -c "SET password_encryption = 'scram-sha-256'" \
41
+ -c "CREATE ROLE scram_test login password 'test4scram'"
39
42
40
43
- node_js : lts/carbon
41
44
addons :
You can’t perform that action at this time.
0 commit comments