This repository is no longer maintained. As an alternative, check codacy-coverage-reporter to send your test coverage results to your Codacy dashboard.
Codacy coverage support for PHP. Get coverage reporting and code analysis for PHP from Codacy.
--coverage-clover
in PHPUnit)--coverage-xml
in PHPUnit)Setup codacy-coverage with Composer, just add the following to your composer.json:
// composer.json
{
"require-dev": {
"codacy/coverage": "dev-master"
}
}
Download the dependencies by running Composer in the directory of your composer.json
:
# install
$ php composer.phar install --dev
# update
$ php composer.phar update codacy/coverage --dev
codacy-coverage library is available on Packagist.
Add the autoloader to your php script:
require_once 'vendor/autoload.php';
Note: We have php5-curl dependency, if you have issues related to curl_init() please install it with:
sudo apt-get install php5-curl
Setup codacy-coverage as phar, you can simply download a pre-compiled and ready-to-use version as a phar to any directory. Simply download the latest codacy-coverage.phar
file from our releases page:
That's it already.
To update Codacy, you will need your project API token. You can find the token in Project -> Settings -> Integrations -> Project API.
Then set it in your terminal, replacing %Project_Token% with your own token:
export CODACY_PROJECT_TOKEN=%Project_Token%
Note: You should keep your API token well protected, as it grants owner permissions to your projects.
To send coverage in the enterprise version you should:
export CODACY_API_BASE_URL=<Codacy_instance_URL>:16006
Run vendor/bin/codacycoverage
to see a list of commands.
vendor/bin/codacycoverage clover
php vendor/bin/codacycoverage phpunit
By default we assume that
build/logs/clover.xml
build/coverage-xml
You can specify the path to your report with the second parameter:
php vendor/bin/codacycoverage clover path/to/a-clover.xml
php vendor/bin/codacycoverage phpunit directory/path/to/phpunitreport
Even more control:
--base-url=<OTHER_URL>
defaults to http://codacy.com--git-commit=<COMMIT_HASH>
defaults to the last commit hashThis project sends its own coverage during the build in circleCI.
Feel free to check our circle.yml
, and send your coverage as a step of your build process.
Add codacycoverage to your .travis.yml
:
# .travis.yml
language: php
# Do not forget to provide your CODACY_PROJECT_TOKEN as described in https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
# In case of timeouts and build failures you may want to prepend 'travis_retry' to the following commands:
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install -n
script:
- php vendor/bin/phpunit --coverage-clover build/coverage/xml
after_script:
- php vendor/bin/codacycoverage clover build/coverage/xml
If you have a fatal error regarding curl_init():
PHP Fatal error: Uncaught Error: Call to undefined function Codacy\Coverage\Util\curl_init() in /src/Codacy/Coverage/Util/CodacyApiClient.php:30
Run: sudo apt-get install php5-curl
Codacy is an Automated Code Review Tool that monitors your technical debt, helps you improve your code quality, teaches best practices to your developers, and helps you save time in Code Reviews.
Codacy also helps keep track of Code Coverage, Code Duplication, and Code Complexity.
Codacy supports PHP, Python, Ruby, Java, JavaScript, and Scala, among others.
Codacy is free for Open Source projects.