-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
31 lines (26 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- some of the tests we execute do generate php warnings, sadly... we have to swallow them -->
<phpunit colors="true" bootstrap="Tests/bootstrap.php" convertNoticesToExceptions="false" convertWarningsToExceptions="false">
<php>
<!-- the following 2 have been moved to env vars, as they might vary depending on setups -->
<!--<server name="KERNEL_DIR" value="vendor/ezsystems/ezpublish-community/ezpublish" />
<server name="SYMFONY_ENV" value="behat" />-->
<server name="SYMFONY_DEBUG" value="false" />
</php>
<!-- code coverage reporting -->
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Kaliop Workflow Engine Bundle Test Suite">
<directory>./Tests/phpunit/</directory>
</testsuite>
</testsuites>
</phpunit>