add code coverage to php travis

This commit is contained in:
Bernhard Posselt 2014-05-13 00:54:01 +02:00
Родитель 39d1eeb119
Коммит 7aff00999a
3 изменённых файлов: 6 добавлений и 2 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -6,6 +6,7 @@ node_modules/
js/build/
js/*.xml
.rvm
*.clover
# just sane ignores
.*.sw[po]

Просмотреть файл

@ -22,5 +22,8 @@ script:
- wget https://phantomjs.googlecode.com/files/phantomjs-1.9.0-linux-x86_64.tar.bz2
- tar xjf phantomjs-1.9.0-linux-x86_64.tar.bz2
- sudo ln -s $(pwd)/phantomjs-1.9.0-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
- make unit-tests
- make javascript-tests
- make unit-tests
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

Просмотреть файл

@ -41,7 +41,7 @@ dist: clean
test: javascript-tests unit-tests integration-tests acceptance-tests
unit-tests:
phpunit tests/unit
phpunit --coverage-clover=coverage.clover tests/unit
integration-tests: