Changeset 54369
- Timestamp:
- 10/03/2022 04:01:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r54343 r54369 195 195 - name: Run PHPUnit tests 196 196 if: ${{ matrix.php >= '7.0' }} 197 continue-on-error: ${{ matrix.php == '8.1' || matrix.php == '8.2' }}198 197 run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} 199 198 200 199 - name: Run AJAX tests 201 200 if: ${{ ! matrix.split_slow }} 202 continue-on-error: ${{ matrix.php == '8.2' }}203 201 run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ajax 204 202 205 203 - name: Run ms-files tests as a multisite install 206 204 if: ${{ matrix.multisite && ! matrix.split_slow }} 207 continue-on-error: ${{ matrix.php == '8.2' }}208 205 run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c tests/phpunit/multisite.xml --group ms-files 209 206 210 207 - name: Run external HTTP tests 211 208 if: ${{ ! matrix.multisite && ! matrix.split_slow }} 212 continue-on-error: ${{ matrix.php == '8.2' }}213 209 run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c phpunit.xml.dist --group external-http 214 210 215 211 # __fakegroup__ is excluded to force PHPUnit to ignore the <exclude> settings in phpunit.xml.dist. 212 # This test group is not (yet) run against PHP 8.2 as there is no stable Xdebug version available yet for PHP 8.2. 216 213 - name: Run (Xdebug) tests 217 214 if: ${{ ! matrix.split_slow && matrix.php != '8.2' }}
Note: See TracChangeset
for help on using the changeset viewer.