25 lines
		
	
	
		
			849 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			849 B
		
	
	
	
		
			XML
		
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
 | 
						|
<phpunit bootstrap="tests/bootstrap.php" colors="true">
 | 
						|
  <testsuites>
 | 
						|
    <testsuite name="Drupal Unit Test Suite">
 | 
						|
      <directory>./tests</directory>
 | 
						|
      <directory>./modules/*/tests</directory>
 | 
						|
      <directory>../modules</directory>
 | 
						|
      <directory>../sites/*/modules</directory>
 | 
						|
      <!-- Exclude Composer's vendor directory so we don't run tests there. -->
 | 
						|
      <exclude>./vendor</exclude>
 | 
						|
      <!-- Exclude Drush tests. -->
 | 
						|
      <exclude>./drush/tests</exclude>
 | 
						|
      <!-- Exclude special-case files from config's test modules. -->
 | 
						|
      <exclude>./modules/config/tests/config_test/lib/Drupal/config_test</exclude>
 | 
						|
    </testsuite>
 | 
						|
  </testsuites>
 | 
						|
  <!-- Filter for coverage reports. -->
 | 
						|
  <filter>
 | 
						|
    <blacklist>
 | 
						|
      <directory>./vendor</directory>
 | 
						|
    </blacklist>
 | 
						|
  </filter>
 | 
						|
</phpunit>
 |