Skip to content

Commit ddcf5d6

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

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
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: |
230231
if [ $COVERAGE == '1' ]
231232
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
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' ]
235+
then
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)