Improve test environment

phpcs-errors:241 phpunit-status:successful
This commit is contained in:
Joshua Ramon Enslin 2020-04-22 01:25:49 +02:00 committed by Stefan Rohde-Enslin
parent b5a0ab4f89
commit 8c8449e92a

View File

@ -1,14 +1,21 @@
<phpunit <phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd"
backupGlobals="true" backupGlobals="false"
backupStaticAttributes="false" backupStaticAttributes="false"
cacheResult="true" beStrictAboutChangesToGlobalState="false"
cacheTokens="true" beStrictAboutOutputDuringTests="false"
colors="false" beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutCoversAnnotation="false"
cacheResult="false"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="false" convertErrorsToExceptions="false"
convertNoticesToExceptions="false" convertDeprecationsToExceptions="true"
convertWarningsToExceptions="false" convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
enforceTimeLimit="true"
forceCoversAnnotation="false" forceCoversAnnotation="false"
printerClass="PHPUnit\TextUI\ResultPrinter" printerClass="PHPUnit\TextUI\ResultPrinter"
processIsolation="true" processIsolation="true"
@ -21,11 +28,10 @@
timeoutForSmallTests="1" timeoutForSmallTests="1"
timeoutForMediumTests="10" timeoutForMediumTests="10"
timeoutForLargeTests="60" timeoutForLargeTests="60"
verbose="false"> verbose="true">
<filter> <filter>
<whitelist processUncoveredFilesFromWhitelist="true"> <whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../home/</directory> <directory suffix=".php">../exceptions/</directory>
<directory suffix=".php">../inc/</directory>
<!-- <file>/path/to/file</file> <!-- <file>/path/to/file</file>
<exclude> <exclude>
<directory suffix=".php">/path/to/files</directory> <directory suffix=".php">/path/to/files</directory>