diff options
author | Jeremy <jeremy.benoist@gmail.com> | 2015-01-31 09:15:51 +0100 |
---|---|---|
committer | Jeremy <jeremy.benoist@gmail.com> | 2015-01-31 09:35:50 +0100 |
commit | aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (patch) | |
tree | 6089b5574ef56991d36701c84754f420cc3bd64f /app/phpunit.xml.dist | |
parent | 4ffc77d9f574fd91e9ac811754c2aa42a06e582f (diff) | |
download | wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.gz wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.zst wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.zip |
Tests are working again
Diffstat (limited to 'app/phpunit.xml.dist')
-rw-r--r-- | app/phpunit.xml.dist | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app/phpunit.xml.dist b/app/phpunit.xml.dist index 0be14ca9..6593a2f0 100644 --- a/app/phpunit.xml.dist +++ b/app/phpunit.xml.dist | |||
@@ -1,12 +1,17 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | ||
3 | <!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html --> | 3 | <phpunit backupGlobals="false" |
4 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 4 | backupStaticAttributes="false" |
5 | xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" | ||
6 | backupGlobals="false" | ||
7 | colors="true" | 5 | colors="true" |
6 | convertErrorsToExceptions="true" | ||
7 | convertNoticesToExceptions="true" | ||
8 | convertWarningsToExceptions="true" | ||
9 | processIsolation="false" | ||
10 | stopOnFailure="false" | ||
11 | syntaxCheck="false" | ||
8 | bootstrap="bootstrap.php.cache" | 12 | bootstrap="bootstrap.php.cache" |
9 | > | 13 | > |
14 | |||
10 | <testsuites> | 15 | <testsuites> |
11 | <testsuite name="wallabag Test Suite"> | 16 | <testsuite name="wallabag Test Suite"> |
12 | <directory>../src/Wallabag/CoreBundle/Tests</directory> | 17 | <directory>../src/Wallabag/CoreBundle/Tests</directory> |