-
-
Notifications
You must be signed in to change notification settings - Fork 61
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
Recompiles workspace crates every time #198
Comments
Could you provide an example to reproduce this? Also, old results will be removed unless you pass
|
I've got the repro ready and then tried putting Might still be unexpected behaviour however, that:
|
This is #151, and will be fixed by #197
readme example describes |
👍
Sorry if I wasn't clear - I've already figured out how to do / not do a rebuild, but it's still unexpected for a new user that adding |
Indeed. Adding a document to mention it seems like a good idea. |
I see that the workspace's bin crates are recompiled everytime as well. I can reproduce with the provided repro repo. while :; do cargo llvm-cov --all-targets --all-features --locked --frozen; done
# Note: plain cargo test call does not recompile things:
while :; do cargo test --all-targets --all-features --locked --frozen; done Please advise. |
@fenollp adding |
Added --no-clean flag as a workaround for this. See #214 for more. |
Currently, running
cargo llvm-cov run
recompiles the workspace crates every time, making merging multiple runs with--no-report
and--no-run --html
unfeasible.The text was updated successfully, but these errors were encountered: