wallabag/phpunit.xml.dist

37 lines
1.1 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"
bootstrap="app/autoload.php"
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/" />
</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>