Skip to content

Commit

Permalink
Remove --verbose from phpunit (#81)
Browse files Browse the repository at this point in the history
--verbose was removed in phpunit 10

sebastianbergmann/phpunit#5647
  • Loading branch information
chrfritsch authored Sep 3, 2024
1 parent 893fb7d commit 6e0615b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stages/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ _stage_run_tests() {
test_selection="${test_selection} --filter ${DRUPAL_TESTING_TEST_FILTER}"
fi

local runtest="${phpunit} --verbose --configuration ${docroot}/core ${test_selection} ${test_location}"
local runtest="${phpunit} --configuration ${docroot}/core ${test_selection} ${test_location}"

cd "${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" || exit
eval "COMPOSER_PROCESS_TIMEOUT=0 ${runtest}" || exit 1
Expand Down

0 comments on commit 6e0615b

Please sign in to comment.