mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?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/src" />
|
|
<server name="SYMFONY_ENV" value="behat" />
|
|
<server name="APP_ENV" value="behat" />-->
|
|
<server name="SYMFONY_DEBUG" value="false" />
|
|
<server name="APP_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 Migration Bundle Test Suite">
|
|
<directory>./Tests/phpunit/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
</phpunit>
|