fix(workspace): clear strict lint and test debt

This commit is contained in:
slhx agent
2026-07-13 08:59:48 +02:00
parent d0e7022c86
commit 65895d8b83
10 changed files with 49 additions and 26 deletions
+3 -1
View File
@@ -18,7 +18,7 @@ impl Server {
drop(listener);
let bin = env!("CARGO_BIN_EXE_hemx-workout-example");
let child = Command::new(bin)
let mut child = Command::new(bin)
.env("HEMX_WORKOUT_ADDR", &addr)
.stdout(Stdio::null())
.stderr(Stdio::null())
@@ -32,6 +32,8 @@ impl Server {
}
std::thread::sleep(Duration::from_millis(25));
}
let _ = child.kill();
let _ = child.wait();
panic!("hemx-workout-example did not listen on {addr}");
}
}