Skip to content

Commit 0d138ba

Browse files
committed
Fix PHPUnit coverage configuration to use 'classes' directory
The coverage configuration was pointing to a non-existent 'src' directory, causing PHPUnit to not generate any coverage data. Changed to 'classes' which is the actual source code directory. This was the root cause of 0% coverage reporting.
1 parent 66afab7 commit 0d138ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</testsuites>
1515
<coverage>
1616
<include>
17-
<directory suffix=".php">src</directory>
17+
<directory suffix=".php">classes</directory>
1818
<file>progress-planner.php</file>
1919
</include>
2020
</coverage>

0 commit comments

Comments
 (0)