A tool to analyze PHPUnit code coverage for modified lines in Bitbucket pull requests.
This tool analyzes PHPUnit code coverage reports and git diffs to calculate the test coverage percentage of modified lines in a pull request. It then creates a coverage report in Bitbucket, showing the overall coverage percentage and highlighting uncovered lines.
Key features:
- Focuses only on modified/new lines in the pull request
- Creates a coverage report directly in Bitbucket
- Adds annotations for uncovered lines
- Marks the report as PASSED if coverage is > 80%, otherwise FAILED
Sometimes your code may have many lines without tests, but you can quickly disable them.
composer require mgdsoft/bitbucket-pr-coverage
php vendor/bin/pr-coverage coverage_report \
--coverage_report_path=/path/to/clover.xml \
--api_token=your-bitbucket-token
You can also set the following environment variables instead of passing command-line options:
BITBUCKET_PR_ID
: Pull request ID (default in Bitbucket pipelines)BITBUCKET_WORKSPACE
: Bitbucket workspace/owner (default in Bitbucket pipelines)BITBUCKET_REPO_SLUG
: Repository name (default in Bitbucket pipelines)
# generate clover.xml with PHPUnit
php -d memory_limit=-1 bin/phpunit --log-junit ./test-reports/phpunit.junit.xml --coverage-clover ./test-reports/phpunit.coverage.xml
export BITBUCKET_PR_ID=123
export BITBUCKET_WORKSPACE=your-workspace
export BITBUCKET_REPO_SLUG=your-repo
export BITBUCKET_TOKEN=your-bitbucket-token
php bin/pr-coverage coverage_report --coverage_report_path=$BITBUCKET_CLONE_DIR/test-reports/phpunit.coverage.xml
- Reads the PHPUnit coverage report (XML format)
- Generates a git diff between the current branch and the target branch
- Identifies which lines were modified in the pull request
- Calculates the coverage percentage for the modified lines
- Creates a coverage report in Bitbucket
- Adds annotations for uncovered lines
- PHP 8.0 or higher
- PHPUnit XML coverage report
- Bitbucket API token with appropriate permissions
MIT License
This project is a fork of orbeji /phpunit-pr-coverage-check with updated dependencies and code improvements. Thanks to the author Orbeji for their work.