-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
34 lines (31 loc) · 1.42 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!-- Copy and rename to phpunit.xml. Customize as needed. -->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
syntaxCheck="false">
<php>
<!--User must have write permissions to this directory.-->
<!--If not supplied, defaults to sys_get_tmp_dir().-->
<!-- <var name="UPAL_TMP" value="/tmp"/> -->
<!--Uncomment the line below if your path to drush differs from `which drush`. Use absolute path.-->
<!--You currently need 'master' branch of drush after 2011.07.21. Drush 4.6 will be OK - http://drupal.org/node/1105514-->
<!--<var name="UNISH_DRUSH" value="/Users/mw/bin/drush"/>-->
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true" addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<directory suffix=".inc">.</directory>
<directory suffix=".module">.</directory>
<exclude>
<directory>./campaignion_csv_test</directory>
<directory suffix="Test.php">.</directory>
<directory suffix=".api.php">.</directory>
<directory suffix=".tpl.php">.</directory>
<directory suffix=".features.inc">.</directory>
<directory suffix=".features.field_base.inc">.</directory>
<directory suffix=".features.field_instance.inc">.</directory>
<directory suffix=".features.taxonomy.inc">.</directory>
<directory suffix=".features.uuid_term.inc">.</directory>
</exclude>
</whitelist>
</filter>
</phpunit>