Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

check_mess.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpunit.xml 1.23 KiB
    <?xml version="1.0"?>
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
    	backupGlobals="true"
    	backupStaticAttributes="false"
    	bootstrap="vendor/autoload.php"
    	cacheTokens="false"
    	colors="true"
    	convertErrorsToExceptions="true"
    	convertNoticesToExceptions="true"
    	convertWarningsToExceptions="true"
    	forceCoversAnnotation="false"
    	mapTestClassNameToCoveredClassName="false"
    	processIsolation="false"
    	stopOnError="false"
    	stopOnFailure="false"
    	stopOnIncomplete="false"
    	stopOnSkipped="false"
    	stopOnRisky="false"
    	testSuiteLoaderFile="tests"
    	timeoutForSmallTests="1"
    	timeoutForMediumTests="10"
    	timeoutForLargeTests="60"
    	verbose="true">
    	<testsuites>
    		<testsuite name="My Test Suite">
    			<directory>tests</directory>
    		</testsuite>
    	</testsuites>
    	<filter>
    		<whitelist processUncoveredFilesFromWhitelist="true">
    			<directory suffix=".php">src</directory>
    			<!-- <file>/path/to/file</file> -->
    			<!-- <exclude> -->
    				<!-- 	<directory suffix=".php">/path/to/files</directory> -->
    				<!-- 	<file>/path/to/file</file> -->
    				<!-- </exclude> -->
    		</whitelist>
    	</filter>
    	<logging>
    		<log type="coverage-clover" target="reports/clover.xml"/>
    	</logging>
    </phpunit>