Skip to content

Commit 3a74389

Browse files
committed
Update Makefile
1 parent 8e565aa commit 3a74389

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,5 +174,14 @@ infection:
174174
version=$(shell jq -r '.packages[] | select(.name == "infection/infection") | .version' build-infection/composer.lock); \
175175
wget https://github.com/infection/infection/releases/download/$$version/infection.phar --no-clobber;
176176
chmod +x infection.phar
177-
php infection.phar --ignore-msi-with-no-mutations --logger-text=php://stdout
177+
XDEBUG_MODE=coverage php tests/vendor/bin/paratest \
178+
--coverage-xml=tmp/coverage/coverage-xml \
179+
--log-junit=tmp/coverage/junit.xml
180+
php infection.phar \
181+
--git-diff-base=origin/2.1.x \
182+
--git-diff-lines \
183+
--coverage=tmp/coverage \
184+
--skip-initial-tests \
185+
--ignore-msi-with-no-mutations \
186+
--logger-text=php://stdout
178187
rm infection.json5 infection.phar

0 commit comments

Comments
 (0)