File tree Expand file tree Collapse file tree 4 files changed +45
-1
lines changed Expand file tree Collapse file tree 4 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1+ coverage_clover : tests/Logs/clover.xml
2+ json_path : tests/Logs/coveralls-upload.json
3+ service_name : travis-ci
Original file line number Diff line number Diff line change 1+ language : php
2+ dist : trusty
3+ php :
4+ - ' 7.1'
5+ - ' 7.2'
6+ - ' 7.3'
7+ install :
8+ - composer update
9+ script :
10+ - ./vendor/bin/phpunit --coverage-clover ./tests/Logs/clover.xml
11+ after_script :
12+ - php vendor/bin/php-coveralls -v
Original file line number Diff line number Diff line change 2525 }
2626 },
2727 "require-dev" : {
28- "phpunit/phpunit" : " ^8.0"
28+ "phpunit/phpunit" : " ^8.0" ,
29+ "php-coveralls/php-coveralls" : " ^2.0"
2930 }
3031}
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit backupGlobals =" false"
3+ backupStaticAttributes =" false"
4+ bootstrap =" vendor/autoload.php"
5+ colors =" true"
6+ convertErrorsToExceptions =" true"
7+ convertNoticesToExceptions =" true"
8+ convertWarningsToExceptions =" true"
9+ processIsolation =" false"
10+ stopOnFailure =" false" >
11+ <testsuites >
12+ <testsuite name =" Unit Tests" >
13+ <directory suffix =" Test.php" >./tests/Unit</directory >
14+ <directory suffix =" Test.php" >./tests/Integration</directory >
15+ </testsuite >
16+ </testsuites >
17+ <filter >
18+ <whitelist >
19+ <directory suffix =" .php" >src</directory >
20+ <exclude >
21+ <directory suffix =" .php" >src/Examples</directory >
22+ </exclude >
23+ </whitelist >
24+ </filter >
25+ <php >
26+
27+ </php >
28+ </phpunit >
You can’t perform that action at this time.
0 commit comments