Skip to content

Commit e071e4f

Browse files
committed
No functional testing on 8.4
1 parent 91d979c commit e071e4f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)