mirror of
https://github.com/code-rhapsodie/ezmigrationbundle2.git
synced 2026-03-24 06:42:19 +01:00
32 lines
1.1 KiB
XML
32 lines
1.1 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_CLASS" value="App\Kernel" />
|
|
<server name="APP_ENV" value="behat" />-->
|
|
<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>
|