wallabag/phpunit.xml.dist

42 lines
1.3 KiB
Plaintext
Raw Normal View History

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