Skip to content

Commit 2a1034c

Browse files
committed
Fix CC MSI threshold
1 parent 0a99857 commit 2a1034c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: mu
22
mu: vendor ## Mutation tests
3-
vendor/bin/infection -s --threads=$(nproc) --min-msi=23 --min-covered-msi=50
3+
vendor/bin/infection -s --threads=$(nproc) --min-msi=23 --min-covered-msi=45
44
vendor/bin/phpunit --coverage-text
55

66
.PHONY: tests
@@ -36,7 +36,7 @@ st: vendor ## Run static analyse
3636

3737
.PHONY: ci-mu
3838
ci-mu: vendor ## Mutation tests (for Github only)
39-
vendor/bin/infection --logger-github -s --threads=$(nproc) --min-msi=23 --min-covered-msi=50
39+
vendor/bin/infection --logger-github -s --threads=$(nproc) --min-msi=23 --min-covered-msi=45
4040

4141
.PHONY: ci-cc
4242
ci-cc: vendor ## Show test coverage rates (console)

0 commit comments

Comments
 (0)