Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/PHP/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test/phpunit-coverage: | ${HOME}/.composer var/phpqa composer.lock
$(call block_end)
test/infection: test/phpunit-coverage
$(call block_start,$@)
${PHPQA_DOCKER_COMMAND} infection run --verbose --show-mutations --no-interaction --only-covered --only-covering-test-cases --coverage var/phpqa/phpunit/ --threads max
${PHPQA_DOCKER_COMMAND} infection run --verbose --show-mutations --no-interaction --only-covering-test-cases --coverage var/phpqa/phpunit/ --threads max
$(call block_end)

${HOME}/.composer:
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/PHP/PhpTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private static function paths(?array $env): array

'test: unit' => [
self::generatePhpqaExecutionPath('php -d pcov.enabled=1 vendor/bin/phpunit --coverage-text --log-junit=var/phpqa/phpunit/junit.xml --coverage-xml var/phpqa/phpunit/coverage-xml/', phpVersion: $phpVersion, dockerImage: $phpqaDockerImage, env: $dockerEnv),
self::generatePhpqaExecutionPath('infection run --verbose --show-mutations --no-interaction --only-covered --only-covering-test-cases --coverage var/phpqa/phpunit/ --threads max', phpVersion: $phpVersion, dockerImage: $phpqaDockerImage, env: $dockerEnv),
self::generatePhpqaExecutionPath('infection run --verbose --show-mutations --no-interaction --only-covering-test-cases --coverage var/phpqa/phpunit/ --threads max', phpVersion: $phpVersion, dockerImage: $phpqaDockerImage, env: $dockerEnv),
],
'test: functional app' => [
self::generateDockerComposeAppExecExecutionPath('vendor/bin/behat --colors --strict', 'test'),
Expand Down