Enable coveralls integration in Travis

This commit is contained in:
Michal Čihař 2013-09-10 14:18:49 +02:00
parent ae8286cd1d
commit 9e31eeeece
2 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,10 @@ before_script:
- git clone git://github.com/zenovich/runkit.git && cd runkit && phpize && ./configure && make && make install && cd ..
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- echo "runkit.internal_override=1" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --no-interaction
script:
- ./scripts/generate-mo --quiet
- ant phpunit lint
after_script:
- php vendor/bin/coveralls -v

View File

@ -20,5 +20,8 @@
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
}
}