Skip to main content

Automatically find diff lines that need test coverage.

Project description

Automatically find diff lines that need test coverage. This is used as a code quality metric during code reviews.

Overview

diff-cover compares an XML coverage report with a git diff and reports which lines in the diff are covered.

XML coverage reports can be generated with tools such as coverage.py

Getting Started

To install, navigate to the diff-cover directory and run:

python setup.py install

You can then use the command:

diff-cover COVERAGE_XML [–html-report REPORT.html]

This will compare the current git branch to BRANCH, identify lines that are not covered (based on COVERAGE_XML), and (optionally) generate an HTML report.

diff-cover ignores files not referenced in COVERAGE_XML, since these files are not tested. This means that documentation and configuration changes will be ignored.

If --html-report is not specified, diff-cover prints a text report to stdout.

diff-cover uses the following to find diff lines:

  • Commits in the current branch that are not also in master (git diff origin/master...HEAD).

  • Staged changes in the current branch (git diff --cached).

  • Unstaged changes in the current branch (git diff).

Troubleshooting

Issue: diff-cover always reports: “No lines with coverage information in this diff.”

Solution: diff-cover matches source files in the coverage XML report with source files in the git diff. For this reason, it’s important that the relative paths to the files match. If you are using coverage.py to generate the coverage XML report, then make sure you run diff-cover from the same working directory.

License

The code in this repository is licensed under version 3 of the AGPL unless otherwise noted.

Please see LICENSE.txt for details.

How to Contribute

Contributions are very welcome. The easiest way is to fork this repo, and then make a pull request from your fork. The first time you make a pull request, you may be asked to sign a Contributor Agreement.

Reporting Security Issues

Please do not report security issues in public. Please email security@edx.org

Mailing List and IRC Channel

You can discuss this code on the edx-code Google Group or in the edx-code IRC channel on Freenode.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

diff_cover-0.1.4.tar.gz (21.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page