add code coverage command

This commit is contained in:
Jochen
2025-11-21 14:38:58 +11:00
parent 24dc7ad642
commit a96a15d1fc
3 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
use g3_execution::ensure_coverage_tools_installed;
fn main() -> anyhow::Result<()> {
// Ensure coverage tools are installed
let already_installed = ensure_coverage_tools_installed()?;
if already_installed {
println!("All coverage tools are already installed!");
} else {
println!("Coverage tools have been installed successfully!");
}
Ok(())
}