(bug 43762) Mark slow unit test as @group medium
[mediawiki.git] / tests / phpunit / suite.xml
blobf286fa118784619186ce2d11859ffecbc4e689f6
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="2"
12                  timeoutForMediumTests="10"
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                         <file>StructureTest.php</file>
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                 </testsuite>
40         </testsuites>
41         <groups>
42                 <exclude>
43                         <group>Utility</group>
44                         <group>Broken</group>
45                         <group>ParserFuzz</group>
46                         <group>Stub</group>
47                 </exclude>
48         </groups>
49 </phpunit>