From dbab66b38d9b011a847a97920b1ec02f45710b50 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 19 Mar 2024 18:02:04 +0100 Subject: [PATCH] maint: Ignore get_uri_nixos_cache because of network access (cherry picked from commit 89736dd18452d11b11e4581a549da1df956d81c6) --- rust/nix-store/src/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/nix-store/src/store.rs b/rust/nix-store/src/store.rs index 7f6f930..420e022 100644 --- a/rust/nix-store/src/store.rs +++ b/rust/nix-store/src/store.rs @@ -125,6 +125,7 @@ mod tests { } #[test] + #[ignore] // Needs network access fn get_uri_nixos_cache() { let store = Store::open("https://cache.nixos.org/").unwrap(); let uri = store.get_uri().unwrap();