-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
30 lines (25 loc) · 1.18 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
<?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 have been moved to env vars, as they might vary depending on setups -->
<!--<server name="KERNEL_DIR" value="vendor/ezsystems/ezplatform/app" />
<server name="SYMFONY_ENV" value="behat" />-->
<server name="SYMFONY_DEBUG" value="false" />
<!-- the value 'disabled' can also be used, but not for very old versions of sf phpunit-bridge -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
<!-- code coverage reporting -->
<filter>
<whitelist>
<directory suffix=".php">./bin</directory>
<directory suffix=".php">./classes</directory>
<directory suffix=".php">./interfaces</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="eZ DB Integrity Test Suite">
<directory>./Tests/phpunit/</directory>
</testsuite>
</testsuites>
</phpunit>