-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
executable file
·42 lines (41 loc) · 1.75 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="true"
verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage/>
<logging>
<testdoxText outputFile="php://stdout"/>
</logging>
<testsuites>
<testsuite name="MicroweberTemplatesTests">
<directory>./userfiles/templates/*/tests/</directory>
<directory>./userfiles/templates/*/src/tests/</directory>
<exclude>./userfiles/templates/*/src/tests/Browser/</exclude>
</testsuite>
<testsuite name="MicroweberCoreTests">
<directory>./src/MicroweberPackages/*/tests/</directory>
<directory>./userfiles/modules/*/tests/</directory>
<directory>./userfiles/modules/*/*/src/tests/</directory>
<exclude>./src/MicroweberPackages/Multilanguage/tests/*</exclude>
</testsuite>
<testsuite name="MicroweberTestMultilanguage">
<directory>./src/MicroweberPackages/Multilanguage/tests/</directory>
</testsuite>
<testsuite name="MicroweberModuleListTests">
<directory>./src/MicroweberPackages/Module/slow_tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<ini name="memory_limit" value="-1"/>
<env name="MAIL_DRIVER" value="array"/>
</php>
</phpunit>