Skip to content

trent-codecov/example-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codecov PHP Example

FOSSA Status

Guide

Travis Setup

Add to your .travis.yml file.

language: php

script:
    - vendor/bin/phpunit --coverage-clover coverage.xml

after_success:
    - bash <(curl -s https://codecov.io/bash)

Produce Coverage Reports

Collect coverage reports vendor/bin/phpunit --coverage-clover coverage.xml, see here

FAQ

  • Q: Can I use phpunit.xml.dist?
    A: Start tracking coverage metrics by adding a coverage logger:
<phpunit>
 ...
 <logging>
       <log type="coverage-clover" target="clover.xml"/>
   </logging>
</phpunit>
  • Q: I don't see one or more files, why?
    A: Codecov will only show files that have lines covered (hit or miss). If your file has no statments it will not show up in Codecov until you add some. Go get em' tiger!

Caveats

Private Repo

Repository tokens are required for (a) all private repos, (b) public repos not using Travis-CI, CircleCI or AppVeyor. Find your repository token at Codecov and provide via appending -t <your upload token> to you where you upload reports.

Links

License

FOSSA Status

About

PHP coverage example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 84.1%
  • Makefile 15.9%