wallabag/phpunit.xml.dist

37 lines
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">
2016-01-15 08:34:09 +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>
2016-01-15 08:34:09 +00:00
<server name="KERNEL_DIR" value="app/" />
2015-03-03 18:20:08 +00:00
</php>
2015-01-30 10:23:18 +00:00
<filter>
<whitelist>
2016-01-15 08:34:09 +00:00
<directory>src</directory>
2015-01-30 10:23:18 +00:00
<exclude>
2016-01-15 08:34:09 +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>