diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-06-01 21:27:35 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-06-22 17:59:35 +0200 |
commit | 23634d5d842dabcf5d7475e2becb7e127824239e (patch) | |
tree | b91688722a996c46f27e8fe0542c356424483da3 /phpunit.xml.dist | |
parent | 891a026e31ad54ca90b70f6026f23260cfadb7fd (diff) | |
download | wallabag-23634d5d842dabcf5d7475e2becb7e127824239e.tar.gz wallabag-23634d5d842dabcf5d7475e2becb7e127824239e.tar.zst wallabag-23634d5d842dabcf5d7475e2becb7e127824239e.zip |
Jump to Symfony 3.1
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r-- | phpunit.xml.dist | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist index e68df9de..38880908 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist | |||
@@ -1,24 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | ||
3 | <phpunit backupGlobals="false" | 3 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | backupStaticAttributes="false" | 4 | xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd" |
5 | backupGlobals="false" | ||
5 | colors="true" | 6 | colors="true" |
6 | convertErrorsToExceptions="true" | ||
7 | convertNoticesToExceptions="true" | ||
8 | convertWarningsToExceptions="true" | ||
9 | processIsolation="false" | ||
10 | stopOnFailure="false" | ||
11 | syntaxCheck="false" | ||
12 | bootstrap="app/autoload.php" | 7 | bootstrap="app/autoload.php" |
13 | > | 8 | > |
14 | 9 | ||
15 | <testsuites> | 10 | <testsuites> |
16 | <testsuite name="wallabag Test Suite"> | 11 | <testsuite name="wallabag Test Suite"> |
17 | <directory>src/Wallabag/*Bundle/Tests</directory> | 12 | <directory>tests</directory> |
18 | </testsuite> | 13 | </testsuite> |
19 | </testsuites> | 14 | </testsuites> |
20 | 15 | ||
21 | <php> | 16 | <php> |
17 | <ini name="error_reporting" value="-1" /> | ||
22 | <server name="KERNEL_DIR" value="app/" /> | 18 | <server name="KERNEL_DIR" value="app/" /> |
23 | </php> | 19 | </php> |
24 | 20 | ||