Skip to content

Commit 5b0dced

Browse files
committed
fixes phpunit take coverage
1 parent f1922ef commit 5b0dced

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

phpunit.xml.dist

+4-8
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,9 @@
2828

2929
<!-- Prevent coverage reports from looking in tests and vendors -->
3030
<filter>
31-
<blacklist>
32-
<directory suffix=".php">./vendor/</directory>
33-
<directory suffix=".ctp">./vendor/</directory>
34-
35-
<directory suffix=".php">./tests/</directory>
36-
<directory suffix=".ctp">./tests/</directory>
37-
</blacklist>
31+
<whitelist>
32+
<directory suffix=".php">./src/</directory>
33+
</whitelist>
3834
</filter>
3935

40-
</phpunit>
36+
</phpunit>

0 commit comments

Comments
 (0)