-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (23 loc) · 804 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (23 loc) · 804 Bytes
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 bootstrap="./tests/phpunit-bootstrap.php">
<php>
<!-- no trailing slashes -->
<env name="TESTS_WPDFS_TMP_FOLDER" value="./tests/tmp" />
</php>
<testsuite name="Wordpress Deploy FolderSync Test Suite">
<directory>./tests/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">src/Wordpress/Deploy/</directory>
</whitelist>
<blacklist>
<directory>test/tmp</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="./tests/log/report" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"/>
<log type="testdox-html" target="./tests/log/testdox.html" />
</logging>
</phpunit>