We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f347b commit b762d62Copy full SHA for b762d62
1 file changed
src/Behat/CoverageUtil.php
@@ -37,7 +37,8 @@ public static function startFromPhpunitConfig(string $phpunitConfigDir): void
37
$phpunitCoverageConfig = simplexml_load_file($phpunitConfigDir . '/phpunit.xml.dist')->coverage;
38
39
$filter->includeDirectory(__DIR__ . '/../../src');
40
- $filter->includeDirectory(__DIR__ . '/../../tests');
+ // tests/ dir was not included before 1840 PR, reproduce the issue
41
+ // $filter->includeDirectory(__DIR__ . '/../../tests');
42
43
foreach ($phpunitCoverageConfig->exclude->directory as $path) {
44
$filter->excludeDirectory($phpunitConfigDir . '/' . $path);
0 commit comments