-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Processing lcov output en masse #2
Comments
Also facing this question. So far we are using Another question: we'd like to diff pull requests, and observe if the pull request is causing more or less code coverage (similar to a codecov chart). That means, comparing coverage from two sets of similar (but not identical) files. Because a pull request might be adding or removing files, functions, lines, etc. This coverage diff program https://github.com/capgelka/lcov-diff at first appeared to be applicable. However, How about covpare? Is it designed to compare one set of source code files against varying test suites, or could it compare a pull request, where "everything" is potentially being modified? |
About that other topic I brought up "diff pull requests", it appears |
As an alternative to using
gcov
repeatedly for every source dir / file in our project, we run coverage reports using a combination oflcov
andgenhtml
. In order to produce reports via Cobertura (or simple HTML reports), we use thegcovr
python utility.We have a use case for which the
covpare
utility but it would be helpful if we could get some direction on how best to utilize theinfo
file that is generated bylcov
.The text was updated successfully, but these errors were encountered: