mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 01:21:03 +00:00
9c0c882006
Also, create database schema on test initialisation
32 lines
1,023 B
XML
32 lines
1,023 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="bootstrap.php.cache"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="wallabag Test Suite">
|
|
<directory>../src/Wallabag/CoreBundle/Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>../src</directory>
|
|
<exclude>
|
|
<directory>../vendor</directory>
|
|
<directory>../src/Wallabag/CoreBundle/Resources</directory>
|
|
<directory>../src/Wallabag/CoreBundle/Tests</directory>
|
|
<directory>../src/Wallabag/CoreBundle/DataFixtures</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|