forked from concretecms/concretecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
39 lines (39 loc) · 1.3 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/sebastianbergmann/phpunit/8.5.20/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true"
processIsolation="false"
>
<testsuites>
<testsuite name="Tests">
<directory>tests/tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">concrete/src/</directory>
<directory suffix=".php">concrete/controllers/</directory>
<directory suffix="controller.php">concrete/</directory>
<directory suffix="page_theme.php">concrete/themes/</directory>
<exclude>
<directory suffix=".php">concrete/vendor</directory>
</exclude>
</whitelist>
</filter>
<groups>
<exclude>
<group>online</group>
</exclude>
</groups>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="error_reporting" value="-1"/>
</php>
</phpunit>