Attempting to clean up directories

This commit is contained in:
Beshoy Girgis
2020-12-05 06:41:19 +00:00
parent 02ef17f5ba
commit 2e17734d48
2 changed files with 7 additions and 8 deletions
+6 -6
View File
@@ -10,22 +10,22 @@
stopOnFailure="false">
<testsuites>
<testsuite name="Install">
<directory suffix="Test.php">./tests/Install</directory>
<directory suffix="Test.php">tests/Install</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./Blacklight</directory>
<directory suffix=".php">./app</directory>
<directory suffix=".php">Blacklight</directory>
<directory suffix=".php">app</directory>
</whitelist>
</filter>
<php>
@@ -37,6 +37,6 @@
<env name="MAIL_DRIVER" value="array"/>
</php>
<logging>
<log type="coverage-clover" target="/build/logs/clover.xml"/>
<log type="coverage-clover" target="tests/build/logs/clover.xml"/>
</logging>
</phpunit>