You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
if check_should_execute 'phpunit'&&!command -v phpunit >/dev/null 2>&1;then
We should remove the ! command -v phpunit >/dev/null 2>&1; check to ensure we still install the required version of phpunit when it isn't specified as a Composer dependency.
For setups with phpunit required in composer.json it will still use the binary installed by Composer because the Composer bin directory is prepended to the $PATH:
Currently we skip installing phpunit if the binary is found:
wp-dev-lib/scripts/check-diff.sh
Line 454 in 2a12c1c
We should remove the
! command -v phpunit >/dev/null 2>&1;
check to ensure we still install the required version of phpunit when it isn't specified as a Composer dependency.For setups with phpunit required in
composer.json
it will still use the binary installed by Composer because the Composerbin
directory is prepended to the$PATH
:wp-dev-lib/scripts/check-diff.sh
Lines 448 to 450 in 2a12c1c
after the temporary directory is prepended here:
wp-dev-lib/scripts/check-diff.sh
Lines 412 to 415 in 2a12c1c
The text was updated successfully, but these errors were encountered: