Skip to content

Commit 86ffd73

Browse files
authored
Check for MSI (#1034)
1 parent 9de0717 commit 86ffd73

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

.dev-tools/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"phpcbf || exit 0"
5252
],
5353
"infection": [
54-
"infection run --logger-github --no-progress --threads=16"
54+
"infection run --min-msi=100 --logger-github --no-progress --threads=16"
5555
]
5656
}
5757
}

.dev-tools/infection.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"configDir": "..",
1818
"customPath": "../vendor/phpunit/phpunit/phpunit"
1919
},
20-
"minCoveredMsi": 100,
2120
"mutators": {
2221
"ArrayAll": true,
2322
"ArrayAny": true,

.dev-tools/src/InfectionConfigBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ public function build(): array
5252
'configDir' => '..',
5353
'customPath' => '../vendor/phpunit/phpunit/phpunit',
5454
],
55-
'minCoveredMsi' => 100,
5655
'mutators' => [],
5756
];
5857

.php-cs-fixer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
$rules['trailing_comma_in_multiline'] = ['after_heredoc' => true, 'elements' => ['arguments', 'arrays']]; // TODO: remove when dropping support to PHP <8.0
6060

6161
$rules[PhpdocOnlyAllowedAnnotationsFixer::name()]['elements'][] = 'phpstan-type';
62-
$rules[PhpdocOnlyAllowedAnnotationsFixer::name()]['elements'][] = 'codeCoverageIgnore';
6362

6463
foreach (new PhpCsFixerCustomFixersDev\Fixers() as $fixer) {
6564
$rules[$fixer->getName()] = true;

0 commit comments

Comments
 (0)