Skip to content

Commit

Permalink
Specializes Travis CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiopro committed Jan 21, 2017
1 parent bc087fe commit 532d8aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -6,7 +6,7 @@ php:
- 7.1
- nightly

script: make test
script: make test-ci

after_success:
- travis_retry php vendor/bin/coveralls
6 changes: 4 additions & 2 deletions Makefile
@@ -1,8 +1,10 @@
.PHONY: docs test install update
.PHONY: test test-ci install update

update:
composer update
install:
composer install
test: install
phpunit --test-suffix=Test.php test --coverage-html coverage/html --coverage-clover build/logs/clover.xml
phpunit --test-suffix=Test.php test --coverage-html coverage/html
test-ci: install
phpunit --test-suffix=Test.php test --coverage-clover build/logs/clover.xml

0 comments on commit 532d8aa

Please sign in to comment.