test
Some checks failed
/ test (push) Successful in 0s
Unit Testing / Run phpunit tests (pull_request) Failing after 4m18s

This commit is contained in:
André Menrath 2024-09-21 07:44:23 +02:00
parent aa6e816196
commit 0dba6d1127

View file

@ -11,12 +11,16 @@ if ( ! $_tests_dir ) {
$_tests_dir = rtrim( sys_get_temp_dir(), '/\\' ) . '/wordpress-tests-lib';
}
echo $_tests_dir;
// Forward custom PHPUnit Polyfills configuration to PHPUnit bootstrap file.
$_phpunit_polyfills_path = getenv( 'WP_TESTS_PHPUNIT_POLYFILLS_PATH' );
if ( false !== $_phpunit_polyfills_path ) {
define( 'WP_TESTS_PHPUNIT_POLYFILLS_PATH', $_phpunit_polyfills_path );
}
echo WP_TESTS_PHPUNIT_POLYFILLS_PATH;
if ( ! file_exists( "{$_tests_dir}/includes/functions.php" ) ) {
echo "Could not find {$_tests_dir}/includes/functions.php, have you run bin/install-wp-tests.sh ?" . PHP_EOL; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
exit( 1 );