@@ -262,7 +262,7 @@ jobs:
262
262
- name : " Install PHP with extensions"
263
263
uses :
" shivammathur/[email protected] "
264
264
with :
265
- coverage : " xdebug "
265
+ coverage : " pcov "
266
266
extensions : " ${{ env.PHP_EXTENSIONS }}"
267
267
php-version : " ${{ matrix.php-version }}"
268
268
@@ -284,11 +284,8 @@ jobs:
284
284
with :
285
285
dependencies : " ${{ matrix.dependencies }}"
286
286
287
- - name : " Dump Xdebug filter with phpunit/phpunit"
288
- run : " vendor/bin/phpunit --configuration=test/Unit/phpunit.xml --dump-xdebug-filter=.build/phpunit/xdebug-filter.php"
289
-
290
- - name : " Collect code coverage with Xdebug and phpunit/phpunit"
291
- run : " vendor/bin/phpunit --configuration=test/Unit/phpunit.xml --coverage-clover=.build/logs/clover.xml --prepend=.build/phpunit/xdebug-filter.php"
287
+ - name : " Collect code coverage with pcov and phpunit/phpunit"
288
+ run : " vendor/bin/phpunit --configuration=test/Unit/phpunit.xml --coverage-clover=.build/logs/clover.xml"
292
289
293
290
- name : " Send code coverage report to Codecov.io"
294
291
env :
@@ -315,7 +312,7 @@ jobs:
315
312
- name : " Install PHP with extensions"
316
313
uses :
" shivammathur/[email protected] "
317
314
with :
318
- coverage : " xdebug "
315
+ coverage : " pcov "
319
316
extensions : " ${{ env.PHP_EXTENSIONS }}"
320
317
php-version : " ${{ matrix.php-version }}"
321
318
@@ -334,7 +331,7 @@ jobs:
334
331
with :
335
332
dependencies : " ${{ matrix.dependencies }}"
336
333
337
- - name : " Run mutation tests with Xdebug and infection/infection"
334
+ - name : " Run mutation tests with pcov and infection/infection"
338
335
run : " vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=${{ env.MIN_COVERED_MSI }} --min-msi=${{ env.MIN_MSI }}"
339
336
340
337
merge :
0 commit comments