We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a291462 commit 95a5217Copy full SHA for 95a5217
tools/local-env/scripts/install.js
@@ -24,6 +24,8 @@ wp_cli( `config set SCRIPT_DEBUG ${process.env.LOCAL_SCRIPT_DEBUG} --raw --type=
24
wp_cli( `config set WP_ENVIRONMENT_TYPE ${process.env.LOCAL_WP_ENVIRONMENT_TYPE} --type=constant` );
25
wp_cli( `config set WP_DEVELOPMENT_MODE ${process.env.LOCAL_WP_DEVELOPMENT_MODE} --type=constant` );
26
27
+wp_cli( 'config set MYSQL_CLIENT_FLAGS MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT --raw --type=constant' );
28
+
29
// Read in wp-tests-config-sample.php, edit it to work with our config, then write it to wp-tests-config.php.
30
const testConfig = readFileSync( 'wp-tests-config-sample.php', 'utf8' )
31
.replace( 'youremptytestdbnamehere', 'wordpress_develop_tests' )
0 commit comments