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.
--defaults
1 parent 4d8420d commit a2deb46Copy full SHA for a2deb46
tools/local-env/scripts/install.js
@@ -37,7 +37,7 @@ writeFileSync( 'wp-tests-config.php', testConfig );
37
// Once the site is available, install WordPress!
38
wait_on( { resources: [ `tcp:localhost:${process.env.LOCAL_PORT}`] } )
39
.then( () => {
40
- wp_cli( 'db reset --yes' );
+ wp_cli( 'db reset --yes --defaults' );
41
const installCommand = process.env.LOCAL_MULTISITE === 'true' ? 'multisite-install' : 'install';
42
wp_cli( `core ${ installCommand } --title="WordPress Develop" --admin_user=admin --admin_password=password [email protected] --skip-email --url=http://localhost:${process.env.LOCAL_PORT}` );
43
} );
0 commit comments