-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
81 lines (81 loc) · 3.49 KB
/
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
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="drupal/sites/default/bootstrap-phpunit.php"
printerClass="clagiordano\PhpunitResultPrinter\ResultPrinter"
backupGlobals="false">
<php>
<env name="PHPUNIT_PRETTY_PRINT_PROGRESS" value="true" />
</php>
<testsuites>
<testsuite name="wmf-civicrm">
<directory>drupal/sites/default/civicrm/extensions/wmf-civicrm/tests/phpunit</directory>
</testsuite>
<testsuite name="large_donation tests">
<directory>drupal/sites/all/modules/large_donation/tests</directory>
</testsuite>
<testsuite name="offline2civicrm tests">
<directory>drupal/sites/all/modules/offline2civicrm/tests</directory>
<exclude>drupal/sites/all/modules/offline2civicrm/tests/includes/BaseChecksFileTest.php</exclude>
</testsuite>
<testsuite name="exchange_rates tests">
<directory>drupal/sites/default/civicrm/extensions/exchange_rates/tests/phpunit</directory>
</testsuite>
<testsuite name="wmf_campaigns tests">
<directory>drupal/sites/all/modules/wmf_campaigns/tests</directory>
</testsuite>
<testsuite name="wmf_common tests">
<directory>drupal/sites/all/modules/wmf_common/tests/phpunit</directory>
</testsuite>
<testsuite name="contacteditor_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.contacteditor/tests/phpunit</directory>
</testsuite>
<testsuite name="geocoder_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.geocoder/tests/phpunit</directory>
</testsuite>
<testsuite name="forgetme_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.forgetme/tests/phpunit</directory>
</testsuite>
<testsuite name="smashpig_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.smashpig/tests/phpunit</directory>
</testsuite>
<testsuite name="dedupetools_tests">
<directory>drupal/sites/default/civicrm/extensions/deduper/tests/phpunit</directory>
</testsuite>
<testsuite name="datachecks_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.datachecks/tests/phpunit</directory>
</testsuite>
<testsuite name="wmffraud_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.wmffraud/tests/phpunit</directory>
</testsuite>
<testsuite name="email_amender_tests">
<directory>drupal/sites/default/civicrm/extensions/Email-Amender/tests/phpunit</directory>
</testsuite>
<testsuite name="thank_you_tests">
<directory>drupal/sites/default/civicrm/extensions/wmf-thankyou/tests/phpunit</directory>
</testsuite>
<testsuite name="matchinggift_tests">
<directory>drupal/sites/default/civicrm/extensions/matching-gifts/tests/phpunit</directory>
</testsuite>
<testsuite name="omnimail_tests">
<directory>drupal/sites/default/civicrm/extensions/org.wikimedia.omnimail/tests/phpunit</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Civi\Test\WMFTestListener">
<arguments/>
</listener>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
<arguments>
<array>
<element key="slowThreshold">
<integer>100</integer>
</element>
<element key="reportLength">
<integer>25</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>