forked from WordPress/wordcamp.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
89 lines (79 loc) · 3.16 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<phpunit
bootstrap="phpunit-bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
cacheResultFile=".phpunit/.phpunit.result.cache"
>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
<const name="WordCamp\Error_Handling\SLACK_ERROR_REPORT_URL" value="" />
</php>
<testsuites>
<testsuite name="WordCamp MU Plugins">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/mu-plugins/tests/
</directory>
</testsuite>
<testsuite name="CampTix">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/camptix/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Organizer Reminders">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wordcamp-organizer-reminders/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Budgets Dashboard">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wordcamp-payments-network/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Post Types">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wc-post-types/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Post Type">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wcpt/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Remote CSS">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wordcamp-remote-css/tests/
</directory>
</testsuite>
<testsuite name="WordCamp Speaker Feedback">
<directory prefix="test-" suffix=".php">
./public_html/wp-content/plugins/wordcamp-speaker-feedback/tests/
</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit/coverage-cache">
<include>
<directory suffix=".php">./public_html/wp-content/mu-plugins</directory>
<directory suffix=".php">./public_html/wp-content/plugins/camptix</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wc-post-types</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wcpt</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wordcamp-organizer-reminders</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wordcamp-payments/</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wordcamp-payments-network/</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wordcamp-remote-css</directory>
<directory suffix=".php">./public_html/wp-content/plugins/wordcamp-speaker-feedback</directory>
<file>./public_html/wp-content/sunrise.php</file>
<file>./public_html/wp-content/sunrise-events.php</file>
<file>./public_html/wp-content/sunrise-wordcamp.php</file>
</include>
<exclude>
<directory>./public_html/wp-content/mu-plugins/tests</directory>
<directory>./public_html/wp-content/mu-plugins/vendor</directory>
<directory>./public_html/wp-content/plugins/*/tests</directory>
<directory>./public_html/wp-content/plugins/*/node_modules</directory>
</exclude>
</coverage>
</phpunit>