Skip to content

Commit

Permalink
Add travis-ci + coveralls configuration - fix typo and move files to …
Browse files Browse the repository at this point in the history
…actual test directory
  • Loading branch information
jspeedz committed Oct 13, 2018
1 parent a447d84 commit 6e312c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
coverage_clover: tests/logs/clover.xml
json_path: tests/logs/coveralls-upload.json
coverage_clover: src/Tests/clover.xml
json_path: src/Tests/coveralls-upload.json
service_name: travis-ci
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ before_install:
#- phpenv config-rm xdebug.ini

script:
- ./vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
- ./vendor/bin/phpunit --coverage-clover ./src/Tests/clover.xml

after_script:
- php vendor/bin/php-overalls -v
- php vendor/bin/php-coveralls -v

notifications:
email:
on_success: never
on_failure: always

0 comments on commit 6e312c1

Please sign in to comment.