Index: /branches/version-2_13-dev/.coveralls.yml
===================================================================
--- /branches/version-2_13-dev/.coveralls.yml	(revision 22855)
+++ /branches/version-2_13-dev/.coveralls.yml	(revision 22855)
@@ -0,0 +1,5 @@
+# for php-coveralls
+# see also. https://coveralls.io
+src_dir: data
+coverage_clover: reports/coverage/coverage.xml
+json_path: reports/coverage/coveralls-upload.json
Index: /branches/version-2_13-dev/.travis.yml
===================================================================
--- /branches/version-2_13-dev/.travis.yml	(revision 22842)
+++ /branches/version-2_13-dev/.travis.yml	(revision 22855)
@@ -1,2 +1,4 @@
+# for travis-ci
+# see also. https://travis-ci.org
 language: php
 
@@ -10,4 +12,6 @@
 
 before_script:
+  - curl -s http://getcomposer.org/installer | php
+  - php composer.phar install --dev --no-interaction
   - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE myapp_test;'; fi"
   - sh -c "if [ '$DB' = 'mysql' ]; then sh ./eccube_install.sh mysql; fi"
@@ -16,4 +20,9 @@
   - cp tests/require.php.jenkins tests/require.php
   - cat ./data/config/config.php
+
 script:
-  - phpunit --bootstrap ./data/config/config.php --configuration tests/phpunit.xml.jenkins tests
+  - mkdir -p reports/coverage
+  - phpunit --log-tap reports/tap.log --log-junit reports/unitreport.xml --coverage-html reports/coverage --coverage-clover reports/coverage/coverage.xml --bootstrap ./data/config/config.php --configuration tests/phpunit.xml.jenkins tests
+
+after_script:
+  - php vendor/bin/coveralls -v
Index: /branches/version-2_13-dev/composer.json
===================================================================
--- /branches/version-2_13-dev/composer.json	(revision 22855)
+++ /branches/version-2_13-dev/composer.json	(revision 22855)
@@ -0,0 +1,5 @@
+{
+    "require-dev": {
+        "satooshi/php-coveralls": "dev-master"
+    }
+}
