:octocat: logging & coverage -> .build

This commit is contained in:
codemasher
2019-12-04 18:34:08 +01:00
parent 314ac6d517
commit 17cefd035f
4 changed files with 44 additions and 21 deletions
+9 -8
View File
@@ -1,13 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".build/phpunit.result.cache"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
@@ -19,4 +15,9 @@
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target=".build/coverage/clover.xml"/>
<log type="coverage-xml" target=".build/coverage/coverage-xml"/>
<log type="junit" target=".build/logs/junit.xml"/>
</logging>
</phpunit>