We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9860e20 commit d9146deCopy full SHA for d9146de
bin/install-wp-tests.sh
@@ -55,6 +55,12 @@ get_db_connection_flags() {
55
EXTRA_FLAGS=" --host=$DB_HOSTNAME --protocol=tcp"
56
fi
57
58
+
59
+ # Add --skip-ssl flag for local development (not in CI)
60
+ if [ -z "$CI" ] && [ -z "$GITHUB_ACTIONS" ]; then
61
+ EXTRA_FLAGS="$EXTRA_FLAGS --skip-ssl"
62
+ fi
63
64
echo "--user=$DB_USER --password=$DB_PASS $EXTRA_FLAGS";
65
}
66
changelog/skip-ssl-running-tests-locally
@@ -0,0 +1,4 @@
1
+Significance: patch
2
+Type: dev
3
4
+Comment: Skip SSL verification when running the PHP tests locally.
0 commit comments