]> git.immae.eu Git - github/wallabag/wallabag.git/blob - phpunit.xml.dist
Update bundle & stock file
[github/wallabag/wallabag.git] / phpunit.xml.dist
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit backupGlobals="false"
4 backupStaticAttributes="false"
5 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"
13 >
14
15 <testsuites>
16 <testsuite name="wallabag Test Suite">
17 <directory>./src/Wallabag/*Bundle/Tests</directory>
18 </testsuite>
19 </testsuites>
20
21 <php>
22 <server name="KERNEL_DIR" value="./app/" />
23 <!--
24 Avoid tests to fail because of deprecated stuff
25 see: http://symfony.com/doc/current/cookbook/upgrade/major_version.html#deprecations-in-phpunit
26
27 <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
28 -->
29 </php>
30
31 <filter>
32 <whitelist>
33 <directory>./src</directory>
34 <exclude>
35 <directory>./vendor</directory>
36 <directory>./src/Wallabag/*Bundle/Resources</directory>
37 <directory>./src/Wallabag/*Bundle/Tests</directory>
38 <directory>./src/Wallabag/*Bundle/DataFixtures</directory>
39 </exclude>
40 </whitelist>
41 </filter>
42 </phpunit>