Changeset 44536
- Timestamp:
- 01/10/2019 02:18:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r44534 r44536 77 77 } 78 78 79 system( WP_PHP_BINARY . ' ' . escapeshellarg( dirname( __FILE__ ) . '/install.php' ) . ' ' . escapeshellarg( $config_file_path ) . ' ' . $multisite, $retval ); 80 if ( 0 !== $retval ) { 81 exit( $retval ); 79 if ( '1' !== getenv( 'WP_TESTS_SKIP_INSTALL' ) ) { 80 system( WP_PHP_BINARY . ' ' . escapeshellarg( dirname( __FILE__ ) . '/install.php' ) . ' ' . escapeshellarg( $config_file_path ) . ' ' . $multisite, $retval ); 81 if ( 0 !== $retval ) { 82 exit( $retval ); 83 } 82 84 } 83 85
Note: See TracChangeset
for help on using the changeset viewer.