You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an issue when running cargo-kcov on macos.
cargo kcov -v
Clean [..]
Build test executables
Coverage found the following executables: ["..."]
Running "kcov" "--exclude-pattern=/Users/user/.cargo" "--exclude-pattern=/Users/travis/build/rust-lang/rust/" [...]```
And execution takes forever on a very small project since the libraries are instrumented.
kcov help page states:
--exclude-pattern=pat comma-separated path patterns to exclude from the coverage report
so, it looks like param values should be comma separated, probably the second values overrides the first one.
There's an issue when running cargo-kcov on macos.
kcov help page states:
so, it looks like param values should be comma separated, probably the second values overrides the first one.
And:
https://github.com/kennytm/cargo-kcov/blob/master/src/main.rs
does not seem to work on macos if you don't have Travis installed.
The text was updated successfully, but these errors were encountered: