You appear to be a bot. Output may be restricted
Description
Load the WordPress develop tests bootstrap.php fileLoading bootstrap.php from wordpress-develop-tests might not be what we wanted to do. It reloads the database from scratch. If however we load oik-wp.php then we can continue to process WordPress normally. Our tests might make changes to the database but that's expected to be less of a problem in the short term.
Usage
continue_loading_bootstrap( $wordpress_develop_dir );
Parameters
- $wordpress_develop_dir
- ( string ) required –
Returns
voidSource
File name: oik-batch/tests/bootstrap.phpLines:
1 to 9 of 9
function continue_loading_bootstrap( $wordpress_develop_dir ) { //if ( $oik_batch = locate_oik_batch() ) { // require_once( $oik_batch ); //} else { // echo "Not loading oik-batch" . PHP_EOL; //} // require $wordpress_develop_dir . '/includes/bootstrap.php'; }View on GitHub