From c451e4a89c91d4dae566c8a32a385081c8e7bab8 Mon Sep 17 00:00:00 2001 From: "Sean P. Kelly" Date: Fri, 6 Sep 2024 07:25:39 +0000 Subject: [PATCH] twoliter: only run build-kit tests during integ The build-kit tests significantly balloon twoliter's test time. This marks them with `#[ignore]`, which will have them run on `make integ` or `make build`, but not on `cargo test`. --- twoliter/src/cmd/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/twoliter/src/cmd/mod.rs b/twoliter/src/cmd/mod.rs index 6808677a1..2c094f767 100644 --- a/twoliter/src/cmd/mod.rs +++ b/twoliter/src/cmd/mod.rs @@ -145,6 +145,7 @@ mod test { } #[tokio::test] + #[ignore] // integration test async fn build_core_kit() { let kit_name = "core-kit"; let arch = "aarch64"; @@ -167,6 +168,7 @@ mod test { } #[tokio::test] + #[ignore] // integration test async fn build_extra_1_kit() { let kit_name = "extra-1-kit"; let arch = "x86_64"; @@ -190,6 +192,7 @@ mod test { } #[tokio::test] + #[ignore] // integration test async fn build_extra_2_kit() { let kit_name = "extra-2-kit"; let arch = "aarch64"; @@ -213,6 +216,7 @@ mod test { } #[tokio::test] + #[ignore] // integration test async fn build_extra_3_kit() { let kit_name = "extra-3-kit"; let arch = "x86_64";