test(init): run test with debug logs

This provides more useful failure messages when integration tests fail

Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
pull/1073/head
Dave Tucker 3 months ago
parent adf16e2102
commit 3aa2745972

@ -128,6 +128,7 @@ fn run() -> anyhow::Result<()> {
let path = entry.path();
let status = std::process::Command::new(&path)
.args(&args)
.env("RUST_LOG", "debug")
.status()
.with_context(|| format!("failed to execute {}", path.display()))?;

Loading…
Cancel
Save