File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -226,10 +226,14 @@ jobs:
226226 env :
227227 DB : ${{steps.database-type.outputs.db}}
228228 COVERAGE : ${{ matrix.COVERAGE != 1 && '0' || '1' }}
229+ PHP_VERSION : ${{ matrix.php }}
229230 run : |
230- if [ $COVERAGE == '1' ]
231+ if [ $COVERAGE = '1' ]
232+ then
233+ phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/.github/phpunit-$DB-github.xml --bootstrap ./tests/bootstrap.php --coverage-clover build/logs/clover.xml --testsuite 'phpBB Test Suite'
234+ elif [ "$PHP_VERSION" = "8.4" ]
231235 then
232- phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/.github/phpunit-$DB-github.xml --bootstrap ./tests/bootstrap.php --coverage-clover build/logs/clover.xml
236+ phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/.github/phpunit-$DB-github.xml --bootstrap ./tests/bootstrap.php --testsuite 'phpBB Test Suite'
233237 else
234238 phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/.github/phpunit-$DB-github.xml --bootstrap ./tests/bootstrap.php
235239 fi
You can’t perform that action at this time.
0 commit comments