From 83be65125babf6761941d01a9740fbe2975a4269 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Sun, 20 Aug 2023 09:45:03 +0100 Subject: [PATCH] Temporarily ignore `kvs::timestamp_to_versionstamp` test (#2470) --- lib/src/kvs/tests/timestamp_to_versionstamp.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/kvs/tests/timestamp_to_versionstamp.rs b/lib/src/kvs/tests/timestamp_to_versionstamp.rs index e72ca0cd..f43f6006 100644 --- a/lib/src/kvs/tests/timestamp_to_versionstamp.rs +++ b/lib/src/kvs/tests/timestamp_to_versionstamp.rs @@ -11,6 +11,7 @@ // We need to translate the timestamp to the versionstamp due to that; `now - 1h` to a key suffixed by the versionstamp. #[tokio::test] #[serial] +#[ignore] async fn timestamp_to_versionstamp() { // Create a new datastore let ds = new_ds(Uuid::parse_str("A905CA25-56ED-49FB-B759-696AEA87C342").unwrap()).await;