-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
coverage in json format #389
Comments
Do you really want --report-only here? The idea with that is to separate coverage collection (with --collect-only) from reporting, which is done with --report-only. Since this is bash, it might not make any difference, but I don't think that was what's intended? What are the inconsistencies? There have been bugfixes for later versions, but I'm not sure if it matches your descriptions. |
For now, I want to update kcov to its latest version |
I could not update it manually. Repository says its latesy version is 40. How can I update it to this version? |
There is a docker image, which perhaps is the easiest way. https://hub.docker.com/r/kcov/kcov/ Otherwise, you'll have to build it from source. |
Hi,
I am thankful for this repository and its many possibilities. I wrote the command below to improve kcov-habilities.
In words, it generates on the current folder the folder
coverage
from the evaluation of the current folder itself, except the tests folder. It won't parse the binary directory for other scripts and will not accumulate data from multiple runs.After the command run as above, I obtained the output available on my repository. During research, I saw some inconsistent information about kcov output. The most relevant, in my opinion, was the output in JSON format.
The command run
kcov --version
gives the outputkcov 38
, which means I have 2 versions behind the last versionkcov 40
. It is my greatest suspicion. What do you think?The text was updated successfully, but these errors were encountered: