Hi, I'm trying out the recently stabilized -C instrument-coverage using https://github.com/taiki-e/cargo-llvm-cov .
It works surprisingly well, but I found that there is a really annoying effect when using derive. Every derive counts to the total number of functions, lines and regions. So when I have a #[derive(Clone)] on my pub struct because I want to allow cloning, I also need to use that in a test if I want full coverage. That is really distracting to me as I have a bunch of derives that I don't use explicitly use in my tests and I don't see a reason to test them.
Does anyone know a way to get around that?