forked from WordPress/performance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
44 lines (44 loc) · 1.43 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<phpunit
colors="true"
backupGlobals="false"
bootstrap="tests/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
defaultTestSuite="performance-lab"
>
<testsuites>
<testsuite name="performance-lab">
<directory suffix=".php">plugins/performance-lab/tests</directory>
</testsuite>
<testsuite name="auto-sizes">
<directory suffix=".php">plugins/auto-sizes/tests</directory>
</testsuite>
<testsuite name="dominant-color-images">
<directory suffix=".php">plugins/dominant-color-images/tests</directory>
</testsuite>
<testsuite name="embed-optimizer">
<directory suffix=".php">plugins/embed-optimizer/tests</directory>
</testsuite>
<testsuite name="image-prioritizer">
<directory suffix=".php">plugins/image-prioritizer/tests</directory>
</testsuite>
<testsuite name="optimization-detective">
<directory suffix=".php">plugins/optimization-detective/tests</directory>
</testsuite>
<testsuite name="speculation-rules">
<directory suffix=".php">plugins/speculation-rules/tests</directory>
</testsuite>
<testsuite name="web-worker-offloading">
<directory suffix=".php">plugins/web-worker-offloading/tests</directory>
</testsuite>
<testsuite name="webp-uploads">
<directory suffix=".php">plugins/webp-uploads/tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ms-required</group>
</exclude>
</groups>
</phpunit>