mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[TASK] Use PHP 8.3 by default in runTests.sh (#1287)

Let's use the most performant available PHP version for
local development.
This commit is contained in:
Oliver Klee 2024-05-07 14:32:03 +02:00 committed by GitHub
parent b8ef4383b7
commit 38b50bdf06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -223,9 +223,9 @@ Options:
Specifies the PHP minor version to be used Specifies the PHP minor version to be used
- 7.4: use PHP 7.4 - 7.4: use PHP 7.4
- 8.0: use PHP 8.0 - 8.0: use PHP 8.0
- 8.1: (default) use PHP 8.1 - 8.1: use PHP 8.1
- 8.2: use PHP 8.2 - 8.2: use PHP 8.2
- 8.3: use PHP 8.3 - 8.3: (default) use PHP 8.3
-e "<phpunit options>" -e "<phpunit options>"
Only with -s functional|functionalDeprecated|unit|unitDeprecated|unitRandom Only with -s functional|functionalDeprecated|unit|unitDeprecated|unitRandom
@ -263,7 +263,7 @@ Options:
Show this help. Show this help.
Examples: Examples:
# Run all core unit tests using PHP 8.1 # Run all core unit tests using PHP 8.3
./Build/Scripts/runTests.sh ./Build/Scripts/runTests.sh
./Build/Scripts/runTests.sh -s unit ./Build/Scripts/runTests.sh -s unit
@ -303,7 +303,7 @@ TEST_SUITE="unit"
CORE_VERSION="12.4" CORE_VERSION="12.4"
DBMS="sqlite" DBMS="sqlite"
DBMS_VERSION="" DBMS_VERSION=""
PHP_VERSION="8.1" PHP_VERSION="8.3"
PHP_XDEBUG_ON=0 PHP_XDEBUG_ON=0
PHP_XDEBUG_PORT=9003 PHP_XDEBUG_PORT=9003
EXTRA_TEST_OPTIONS="" EXTRA_TEST_OPTIONS=""