BUGFIX: Separate functional and unit coverage results

This commit is contained in:
Daniel Siepmann 2016-12-10 16:20:37 +01:00
parent 070e901dbb
commit 8500b8fd57

View file

@ -1,5 +1,5 @@
<phpunit <phpunit
backupGlobals="false" backupGlobals="true"
backupStaticAttributes="false" backupStaticAttributes="false"
bootstrap="../../.Build/vendor/typo3/cms/typo3/sysext/core/Build/FunctionalTestsBootstrap.php" bootstrap="../../.Build/vendor/typo3/cms/typo3/sysext/core/Build/FunctionalTestsBootstrap.php"
@ -7,7 +7,7 @@
convertErrorsToExceptions="false" convertErrorsToExceptions="false"
convertWarningsToExceptions="false" convertWarningsToExceptions="false"
forceCoversAnnotation="false" forceCoversAnnotation="false"
processIsolation="false" processIsolation="true"
stopOnError="false" stopOnError="false"
stopOnFailure="false" stopOnFailure="false"
stopOnIncomplete="false" stopOnIncomplete="false"
@ -27,8 +27,8 @@
</filter> </filter>
<logging> <logging>
<log type="coverage-html" target="../../.Build/report/unit/html" lowUpperBound="35" highLowerBound="70"/> <log type="coverage-html" target="../../.Build/report/functional/html" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="../../.Build/report/unit/clover/coverage"/> <log type="coverage-clover" target="../../.Build/report/functional/clover/coverage"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging> </logging>
</phpunit> </phpunit>