From 5d69d8ecca9ad17035ad68a90f743d82dda620a5 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Tue, 26 Apr 2022 12:40:21 +0100 Subject: [PATCH] chore: ignore sector update compound tests (#1592) The sector update compound tests take a long time to run, ignore them by default, like other long running tests (e.g. the lifecycle ones). --- storage-proofs-update/tests/compound.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/storage-proofs-update/tests/compound.rs b/storage-proofs-update/tests/compound.rs index b3736c1d9..057a4b2c7 100644 --- a/storage-proofs-update/tests/compound.rs +++ b/storage-proofs-update/tests/compound.rs @@ -222,31 +222,37 @@ where } #[test] +#[ignore] fn test_empty_sector_update_compound_1kib() { test_empty_sector_update_compound::(SECTOR_SIZE_1_KIB); } #[test] +#[ignore] fn test_empty_sector_update_compound_2kib() { test_empty_sector_update_compound::(SECTOR_SIZE_2_KIB); } #[test] +#[ignore] fn test_empty_sector_update_compound_4kib() { test_empty_sector_update_compound::(SECTOR_SIZE_4_KIB); } #[test] +#[ignore] fn test_empty_sector_update_compound_8kib() { test_empty_sector_update_compound::(SECTOR_SIZE_8_KIB); } #[test] +#[ignore] fn test_empty_sector_update_compound_16kib() { test_empty_sector_update_compound::(SECTOR_SIZE_16_KIB); } #[test] +#[ignore] fn test_empty_sector_update_compound_32kib() { test_empty_sector_update_compound::(SECTOR_SIZE_32_KIB); }