summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Bilbie <alex@alexbilbie.com>2012-10-18 17:45:20 +0200
committerAlex Bilbie <alex@alexbilbie.com>2012-10-18 17:45:20 +0200
commit187632748fd2694dd735b48eee157744dd83f3b4 (patch)
tree4c3537f405af94e36615f6a3e9fb1546ace26ac8 /tests
parent4b3cf8d825e13d4f24654fc6b26f2ca15d73c4f8 (diff)
Exclude libs installed via Composer from code coverage tests
Signed-off-by: Alex Bilbie <alex@alexbilbie.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/phpunit.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index 56cb8841c..96c3af9bb 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<phpunit
+<phpunit
bootstrap="./Bootstrap.php"
colors="true"
convertNoticesToExceptions="true"
@@ -16,10 +16,11 @@
<directory suffix="test.php">./codeigniter/libraries</directory>
</testsuite>
</testsuites>
- <filters>
+ <filter>
<blacklist>
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory>
+ <directory suffix=".php">../vendor</directory>
</blacklist>
- </filters>
+ </filter>
</phpunit> \ No newline at end of file