From 6e0615bb80d0b05537dbfdb53768dce323b6d457 Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Tue, 3 Sep 2024 16:54:39 +0200 Subject: [PATCH] Remove --verbose from phpunit (#81) --verbose was removed in phpunit 10 https://github.com/sebastianbergmann/phpunit/issues/5647 --- lib/stages/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stages/run_tests.sh b/lib/stages/run_tests.sh index cee2e68..95da93f 100644 --- a/lib/stages/run_tests.sh +++ b/lib/stages/run_tests.sh @@ -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