-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
code coverage on partial expressions #19161
Comments
The second case should be fixed on master already. The first case requires parser change and/or partial line/expression coverage support. |
Sorry - what's the first case / second case? |
First 17 ==(g::DiGraph, h::DiGraph) =
- vertices(g) == vertices(h) &&
- ne(g) == ne(h) &&
- fadj(g) == fadj(h) &&
- badj(g) == badj(h) Second, - is_directed(g::DiGraph) = true |
Oh, the Will the fix be backported to 0.5 at some point? |
AFAICT the second issue is fixed on master and should work even with inining on. I renamed the issue to cover the first case since I don't think we have an issue for it yet. Please open a new issue about the second case if it is not fixed on master. |
LightGraphs likely won't work on master so I can't really test it. |
OK, thanks for the input. The first case doesn't really affect me so feel free to use this as the issue, but I'll mute the notifications. |
I'm going to close this out as I'm not sure it's relevant anymore. |
In https://github.com/JuliaGraphs/LightGraphs.jl/blob/master/test/graphdigraph.jl#L65-L68:
However, from
julia --inline=no --code-coverage=all test/runtests.jl
:Codecov reports it similarly: https://codecov.io/gh/JuliaGraphs/LightGraphs.jl/src/c3fad06d21bb85c5b4685ccd1b23b2e5febd07c9/src/digraph.jl
There are a few other places where explicit tests are not being counted. How do I fix this so I can get LG to 100%?
The text was updated successfully, but these errors were encountered: