diff options
author | Joas Schilling <coding@schilljs.com> | 2023-10-16 10:16:22 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-10-16 10:17:22 +0200 |
commit | 500fa5431dd563d03724e45e8f78d56962579460 (patch) | |
tree | 8801992459ec58db7dd588f4654f55e1e11ef1cc /autotest.sh | |
parent | 8212feefb9cf5796e6a92b27956092a1b5e933fe (diff) | |
download | nextcloud-server-500fa5431dd563d03724e45e8f78d56962579460.tar.gz nextcloud-server-500fa5431dd563d03724e45e8f78d56962579460.zip |
Fix unit tests on PHP 8.3
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest.sh b/autotest.sh index 6f82b42283c..aa44a7a3efb 100755 --- a/autotest.sh +++ b/autotest.sh @@ -401,8 +401,8 @@ function execute_tests { echo "No coverage" fi - echo "$PHPUNIT" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3" - "$PHPUNIT" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3" + echo "$PHPUNIT" --colors=always --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3" + "$PHPUNIT" --colors=always --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3" RESULT=$? if [ "$PRIMARY_STORAGE_CONFIG" == "swift" ] ; then |