File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 88install :
99 - composer install
1010script :
11- - phpunit --bootstrap vendor/autoload.php -- coverage-clover clover.xml tests
11+ - tests/ phpunit --coverage-clover clover.xml
1212after_success :
1313 - travis_retry php vendor/bin/coveralls
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ dir=` dirname $0 `
3+ exec " ${dir} " /../vendor/phpunit/phpunit/phpunit --configuration " ${dir} " /phpunit.xml " $@ "
Original file line number Diff line number Diff line change 1+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.4/phpunit.xsd"
3+ bootstrap =" ../vendor/autoload.php"
4+ colors =" auto"
5+ beStrictAboutOutputDuringTests =" true"
6+ beStrictAboutTestsThatDoNotTestAnything =" true"
7+ verbose =" true" >
8+
9+ <testsuites >
10+ <testsuite name =" tests" >
11+ <directory >.</directory >
12+ </testsuite >
13+ </testsuites >
14+
15+ <filter >
16+ <whitelist addUncoveredFilesFromWhitelist =" true" >
17+ <directory >../src</directory >
18+ </whitelist >
19+ </filter >
20+ </phpunit >
You can’t perform that action at this time.
0 commit comments