[![Build Status](https://travis-ci.org/kan/coveralls-perl.svg?branch=master)](https://travis-ci.org/kan/coveralls-perl) # NAME Devel::Cover::Report::Coveralls - coveralls backend for Devel::Cover # USAGE ## Travis CI 1\. Add your repo to coveralls. https://coveralls.io/repos/new 2\. Add setting to .travis.yaml (before\_install and script section) language: perl perl: - 5.16.3 - 5.14.4 before_install: cpanm -n Devel::Cover::Report::Coveralls script: perl Build.PL && ./Build build && cover -test -report coveralls 3\. push new change to github 4\. updated coveralls your project page
## another CI 1\. Get repo\_token from your project page in coveralls. 2\. Write .coveralls.yml (don't add this to public repo) repo_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 3\. Run CI. # DESCRIPTION [https://coveralls.io/](https://coveralls.io/) is service to publish your coverage stats online with a lot of nice features. This module provides seamless integration with [Devel::Cover](https://metacpan.org/pod/Devel%3A%3ACover) in your perl projects. # SEE ALSO [https://coveralls.io/](https://coveralls.io/) [https://coveralls.io/docs](https://coveralls.io/docs) [https://github.com/coagulant/coveralls-python](https://github.com/coagulant/coveralls-python) [Devel::Cover](https://metacpan.org/pod/Devel%3A%3ACover) ## EXAMPLE [https://coveralls.io/r/kan/p5-smart-options](https://coveralls.io/r/kan/p5-smart-options) # LICENSE Copyright (C) Kan Fushihara This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. # AUTHOR Kan Fushihara