Fix the error in html email when pear mail_mime is missing
[mediawiki.git] / tests / phpunit / suite.xml
blobe1043b1b1313c445b10280b3bd13133c92e11c2a
1 <?xml version="1.0" encoding="UTF-8"?>
3 <!-- colors don't work on Windows! -->
4 <phpunit bootstrap="./bootstrap.php"
5          colors="true"
6          backupGlobals="false"
7          convertErrorsToExceptions="true"
8          convertNoticesToExceptions="true"
9          convertWarningsToExceptions="true"
10          stopOnFailure="false"
11                  timeoutForSmallTests="10"
12                  timeoutForMediumTests="30"
13                  timeoutForLargeTests="60"
14          strict="true"
15                  verbose="true">
16         <testsuites>
17                 <testsuite name="includes">
18                         <directory>includes</directory>
19                 </testsuite>
20                 <testsuite name="languages">
21                         <directory>languages</directory>
22                 </testsuite>
23                 <testsuite name="skins">
24                         <directory>skins</directory>
25                 </testsuite>
26                 <!-- As there is a class Maintenance, we cannot use the
27                      name "maintenance" directly -->
28                 <testsuite name="maintenance_suite">
29                         <directory>maintenance</directory>
30                 </testsuite>
31                 <testsuite name="structure">
32                         <directory>structure</directory>
33                 </testsuite>
34                 <testsuite name="uploadfromurl">
35                         <file>suites/UploadFromUrlTestSuite.php</file>
36                 </testsuite>
37                 <testsuite name="extensions">
38                         <file>suites/ExtensionsTestSuite.php</file>
39                         <file>suites/ExtensionsParserTestSuite.php</file>
40                 </testsuite>
41         </testsuites>
42         <groups>
43                 <exclude>
44                         <group>Utility</group>
45                         <group>Broken</group>
46                         <group>ParserFuzz</group>
47                         <group>Stub</group>
48                 </exclude>
49         </groups>
50 </phpunit>