aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-06-23 09:18:18 +0200
committerGitHub <noreply@github.com>2016-06-23 09:18:18 +0200
commitd37bb05c881bfdbeb1144b327edd4dcc2cbb163f (patch)
tree1b90f7e733a83af4741a8cb7f49edf3e303f8677 /phpunit.xml.dist
parent891a026e31ad54ca90b70f6026f23260cfadb7fd (diff)
parent99451fe4b76051d61922a6beb7ee9e79cc6e7893 (diff)
downloadwallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.tar.gz
wallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.tar.zst
wallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.zip
Merge pull request #2132 from wallabag/sf3.1
Jump to Symfony 3.1
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist16
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