aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_test/phpunit.xml
blob: 90440ecb4f114f481ddfa039d7300c6a8d6b3b61 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         bootstrap="bootstrap.php"
         convertNoticesToExceptions="false"
         colors="true"
         stderr="true"
         backupGlobals="true"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
    <coverage includeUncoveredFiles="false">
        <include>
            <directory suffix=".php">../</directory>
        </include>
        <exclude>
            <directory suffix=".php">../_cs/</directory>
            <directory suffix=".php">../_test/</directory>
            <directory suffix=".php">../lib/plugins/*/_test/</directory>
            <directory suffix=".php">../lib/tpl/*/_test/</directory>
        </exclude>
    </coverage>
    <testsuites>
        <testsuite name="DokuWiki Tests">
            <directory suffix=".test.php">tests/</directory>
            <directory suffix="Test.php">tests/</directory>
        </testsuite>
        <testsuite name="Plugin Tests">
            <directory suffix=".test.php">../lib/plugins/*/_test/</directory>
            <directory suffix="Test.php">../lib/plugins/*/_test/</directory>
        </testsuite>
        <testsuite name="Template Tests">
            <directory suffix=".test.php">../lib/tpl/*/_test/</directory>
            <directory suffix="Test.php">../lib/tpl/*/_test/</directory>
        </testsuite>
    </testsuites>
    <groups>
        <exclude>
            <group>flaky</group>
        </exclude>
    </groups>
</phpunit>