From 216eee8f33f42c0d19656c797a1874efcf610974 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Sun, 11 Jan 2026 01:14:24 +0100 Subject: [PATCH] deb: add tests logs back --- src/deb/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/deb/mod.rs b/src/deb/mod.rs index 261bd27..9659a9c 100644 --- a/src/deb/mod.rs +++ b/src/deb/mod.rs @@ -160,11 +160,13 @@ mod tests { } #[tokio::test] + #[test_log::test] async fn test_deb_hello_ubuntu_end_to_end() { test_build_end_to_end("hello", "noble", None, None, false).await; } #[tokio::test] + #[test_log::test] #[cfg(target_arch = "x86_64")] async fn test_deb_hello_ubuntu_cross_end_to_end() { test_build_end_to_end("hello", "noble", None, Some("riscv64"), true).await;