forked from zikula/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
35 lines (35 loc) · 1.36 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./src/lib/bootstrap.php"
>
<php>
<server name="KERNEL_DIR" value="./src/app/" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
<testsuites>
<testsuite name="Zikula Bundle Tests">
<directory>./src/lib/Zikula/Bundle/*/Tests/</directory>
<!-- The `switch` tests are not functional and too complicated to fix atm, so exclude them. -->
<exclude>./src/lib/Zikula/Bundle/CoreBundle/Tests/Twig/Node/SwitchNodeTest.php</exclude>
<exclude>./src/lib/Zikula/Bundle/CoreBundle/Tests/Twig/IntegrationTest.php</exclude>
</testsuite>
<testsuite name="Zikula Component Tests">
<directory>./src/lib/Zikula/Component/*/Tests/</directory>
</testsuite>
<testsuite name="Zikula Core Tests">
<directory>./src/lib/Zikula/Core/Tests/</directory>
</testsuite>
<testsuite name="Zikula System Tests">
<directory>./src/system/*/Tests/</directory>
</testsuite>
</testsuites>
</phpunit>