deb: add tests logs back
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-11 01:13:51 +01:00
parent 64b51563e7
commit 44cc36ee1b
2 changed files with 3 additions and 1 deletions

View File

@@ -27,8 +27,8 @@ xz2 = "0.1"
serde_json = "1.0.145" serde_json = "1.0.145"
directories = "6.0.0" directories = "6.0.0"
ssh2 = "0.9.5" ssh2 = "0.9.5"
tempfile = "3.10.1"
gpgme = "0.11" gpgme = "0.11"
[dev-dependencies] [dev-dependencies]
test-log = "0.2.19" test-log = "0.2.19"
serial_test = "3.3.1"

View File

@@ -160,11 +160,13 @@ mod tests {
} }
#[tokio::test] #[tokio::test]
#[test_log::test]
async fn test_deb_hello_ubuntu_end_to_end() { async fn test_deb_hello_ubuntu_end_to_end() {
test_build_end_to_end("hello", "noble", None, None, false).await; test_build_end_to_end("hello", "noble", None, None, false).await;
} }
#[tokio::test] #[tokio::test]
#[test_log::test]
#[cfg(target_arch = "x86_64")] #[cfg(target_arch = "x86_64")]
async fn test_deb_hello_ubuntu_cross_end_to_end() { async fn test_deb_hello_ubuntu_cross_end_to_end() {
test_build_end_to_end("hello", "noble", None, Some("riscv64"), true).await; test_build_end_to_end("hello", "noble", None, Some("riscv64"), true).await;