-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (32 loc) · 938 Bytes
/
Copy pathphpunit.xml
File metadata and controls
35 lines (32 loc) · 938 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
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache"
colors="true"
testdox="true"
failOnEmptyTestSuite="true"
failOnRisky="true"
failOnWarning="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/unit</directory>
</testsuite>
</testsuites>
<source>
<include>
<file>enginescript-site-optimizer.php</file>
<directory suffix=".php">includes</directory>
<file>uninstall.php</file>
</include>
</source>
<logging>
<junit outputFile="coverage/junit.xml"/>
</logging>
<php>
<const name="WP_TESTS_PHPUNIT_POLYFILLS_PATH" value="vendor/yoast/phpunit-polyfills"/>
</php>
</phpunit>