aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-30 11:23:18 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-30 11:23:18 +0100
commit367664ee87cbfb1bb318f71af84eb84cdbc11555 (patch)
tree70d3fd25da97d37a4f646f07bcb8ccbf11ca23f5 /phpunit.xml.dist
parente11e03cb3221c7db241d745f9c3f8bb25a3e6aad (diff)
downloadwallabag-367664ee87cbfb1bb318f71af84eb84cdbc11555.tar.gz
wallabag-367664ee87cbfb1bb318f71af84eb84cdbc11555.tar.zst
wallabag-367664ee87cbfb1bb318f71af84eb84cdbc11555.zip
finally fix phpunit and travis?
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist29
1 files changed, 29 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 00000000..3473d5f9
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,29 @@
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
4<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
6 backupGlobals="false"
7 colors="true"
8 bootstrap="app/bootstrap.php.cache"
9>
10 <testsuites>
11 <testsuite name="wallabag Test Suite">
12 <directory>src/Wallabag/*Bundle/Tests</directory>
13 </testsuite>
14 </testsuites>
15
16 <filter>
17 <whitelist>
18 <directory>src</directory>
19 <exclude>
20 <directory>src/*Bundle/Resources</directory>
21 <directory>src/*Bundle/Tests</directory>
22 <directory>src/*/*Bundle/Resources</directory>
23 <directory>src/*/*Bundle/Tests</directory>
24 <directory>src/*/Bundle/*Bundle/Resources</directory>
25 <directory>src/*/Bundle/*Bundle/Tests</directory>
26 </exclude>
27 </whitelist>
28 </filter>
29</phpunit>