-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
26 lines (26 loc) · 943 Bytes
/
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
<!-- phpunit.xml.dist -->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
colors="true"
verbose="true">
<testsuites>
<testsuite name="Composerize Drupal Test Suite">
<directory>tests/phpunit</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<!-- These files are tested, but using shell_exec(), which
prevents code coverage tracking. -->
<file>src/Composer/CommandProvider.php</file>
<file>src/Composer/Plugin.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>