Skip to content

Commit

Permalink
Bump infection/infection from 0.18.2 to 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-preview[bot] authored and lcobucci committed Nov 2, 2020
1 parent 37be618 commit e058ac2
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: "composer install --no-interaction --no-progress"

- name: "Infection"
run: "make infection PHPUNIT_FLAGS=--coverage-clover=coverage.xml"
run: "make infection PHPUNIT_FLAGS=--coverage-clover=coverage.xml INFECTION_FLAGS=--logger-github"

- name: "Upload Code Coverage"
uses: "codecov/codecov-action@v1"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ phpunit:
.PHONY: infection
infection:
@vendor/bin/phpunit --coverage-xml=build/coverage-xml --log-junit=build/junit.xml $(PHPUNIT_FLAGS)
@vendor/bin/infection -s --threads=$(PARALLELISM) --coverage=build
@vendor/bin/infection -s --threads=$(PARALLELISM) --coverage=build $(INFECTION_FLAGS)

.PHONY: phpcbf
phpcbf:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"doctrine/annotations": "^1.11.1"
},
"require-dev": {
"infection/infection": "^0.18",
"infection/infection": "^0.20",
"lcobucci/coding-standard": "^6.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12",
Expand Down
149 changes: 71 additions & 78 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions infection.json.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"logs": {
"text": "infection.log"
},
"minMsi": 89,
"minCoveredMsi": 90
"minMsi": 84.54,
"minCoveredMsi": 85.42
}

0 comments on commit e058ac2

Please sign in to comment.