-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathphpunit.xml
25 lines (25 loc) · 927 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
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<testsuite name="unit tests">
<directory suffix=".php.test">web/themes/new_weather_theme</directory>
<directory suffix=".php.test">web/themes/weathergov_admin</directory>
<directory suffix=".php.test">web/modules/weather_blocks</directory>
<directory suffix=".php.test">web/modules/weather_data</directory>
<directory suffix=".php.test">web/modules/weather_i18n</directory>
</testsuite>
</testsuites>
<coverage
includeUncoveredFiles="true"
processUncoveredFiles="true"
>
<include>
<directory suffix=".theme">web/themes/new_weather_theme</directory>
<directory>web/modules/weather_blocks</directory>
<directory>web/modules/weather_data</directory>
</include>
<exclude>
<directory suffix=".theme">web/themes/weathergov_admin</directory>
</exclude>
</coverage>
</phpunit>