wallabag/app/phpunit.xml.dist

33 lines
1,023 B
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-01-30 14:47:27 +00:00
bootstrap="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-01-30 14:47:27 +00:00
<directory>../src/Wallabag/CoreBundle/Tests</directory>
2015-01-30 10:23:18 +00:00
</testsuite>
</testsuites>
<filter>
<whitelist>
2015-01-30 14:47:27 +00:00
<directory>../src</directory>
2015-01-30 10:23:18 +00:00
<exclude>
2015-01-30 14:47:27 +00:00
<directory>../vendor</directory>
<directory>../src/Wallabag/CoreBundle/Resources</directory>
<directory>../src/Wallabag/CoreBundle/Tests</directory>
<directory>../src/Wallabag/CoreBundle/DataFixtures</directory>
2015-01-30 10:23:18 +00:00
</exclude>
</whitelist>
</filter>
</phpunit>