]> git.immae.eu Git - github/wallabag/wallabag.git/blame - phpunit.xml.dist
Last deps update
[github/wallabag/wallabag.git] / phpunit.xml.dist
CommitLineData
367664ee
NL
1<?xml version="1.0" encoding="UTF-8"?>
2
aa6e27cf
J
3<phpunit backupGlobals="false"
4 backupStaticAttributes="false"
367664ee 5 colors="true"
aa6e27cf
J
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 processIsolation="false"
10 stopOnFailure="false"
11 syntaxCheck="false"
5c895a7f 12 bootstrap="app/autoload.php"
aa6e27cf
J
13 >
14
367664ee
NL
15 <testsuites>
16 <testsuite name="wallabag Test Suite">
8378485e 17 <directory>./src/Wallabag/*Bundle/Tests</directory>
367664ee
NL
18 </testsuite>
19 </testsuites>
20
8378485e
J
21 <php>
22 <server name="KERNEL_DIR" value="./app/" />
23 </php>
24
367664ee
NL
25 <filter>
26 <whitelist>
8378485e 27 <directory>./src</directory>
367664ee 28 <exclude>
8378485e
J
29 <directory>./vendor</directory>
30 <directory>./src/Wallabag/*Bundle/Resources</directory>
31 <directory>./src/Wallabag/*Bundle/Tests</directory>
32 <directory>./src/Wallabag/*Bundle/DataFixtures</directory>
367664ee
NL
33 </exclude>
34 </whitelist>
35 </filter>
36</phpunit>