forked from teamdeeson/d8-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
23 lines (22 loc) · 837 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<phpunit
bootstrap="web/core/tests/bootstrap.php"
colors="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Custom modules">
<directory>docroot/modules/custom/*/tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">docroot/modules/custom</directory>
<exclude>
<directory suffix=".php">docroot/modules/custom/*/tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>