2015-01-30 11:23:18 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2015-01-31 09:15:51 +01:00
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2015-01-30 11:23:18 +01:00
|
|
|
colors="true"
|
2015-01-31 09:15:51 +01:00
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
2015-03-03 19:20:08 +01:00
|
|
|
bootstrap="app/bootstrap.php.cache"
|
2015-01-31 09:15:51 +01:00
|
|
|
>
|
|
|
|
|
2015-01-30 11:23:18 +01:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="wallabag Test Suite">
|
2015-03-03 19:20:08 +01:00
|
|
|
<directory>./src/Wallabag/*Bundle/Tests</directory>
|
2015-01-30 11:23:18 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2015-03-03 19:20:08 +01:00
|
|
|
<php>
|
|
|
|
<server name="KERNEL_DIR" value="./app/" />
|
2015-11-07 00:18:46 +01:00
|
|
|
<!--
|
|
|
|
Avoid tests to fail because of deprecated stuff
|
|
|
|
see: http://symfony.com/doc/current/cookbook/upgrade/major_version.html#deprecations-in-phpunit
|
2015-12-06 15:00:26 +01:00
|
|
|
|
|
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
|
2015-11-07 00:18:46 +01:00
|
|
|
-->
|
2015-03-03 19:20:08 +01:00
|
|
|
</php>
|
|
|
|
|
2015-01-30 11:23:18 +01:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2015-03-03 19:20:08 +01:00
|
|
|
<directory>./src</directory>
|
2015-01-30 11:23:18 +01:00
|
|
|
<exclude>
|
2015-03-03 19:20:08 +01:00
|
|
|
<directory>./vendor</directory>
|
|
|
|
<directory>./src/Wallabag/*Bundle/Resources</directory>
|
|
|
|
<directory>./src/Wallabag/*Bundle/Tests</directory>
|
|
|
|
<directory>./src/Wallabag/*Bundle/DataFixtures</directory>
|
2015-01-30 11:23:18 +01:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|