How do you guys extract test binaries built in a CI/CD pipeline? when I invoke `cargo test --no-run` it puts a lot of junk into my target folder, and I'm only interested in the actual test binaries. e.g. target/debug/deps/hil_host-4fdf5ac96dc29587 target/debug/deps/regulation-8315afe762f7fab7 surely there must be a nicer way than `find . -type f -executable ! -name "*.*"` to isolate them?