From 141f6bb696bdf63d6057a9375d79ba8c960f2308 Mon Sep 17 00:00:00 2001 From: James Kay Date: Wed, 20 Mar 2024 13:09:30 +0000 Subject: [PATCH] `linera-rpc`: ignore `transport::client` test as it requires a running server --- linera-rpc/tests/transport.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linera-rpc/tests/transport.rs b/linera-rpc/tests/transport.rs index 3aa63f2b683f..6fd984a6aaec 100644 --- a/linera-rpc/tests/transport.rs +++ b/linera-rpc/tests/transport.rs @@ -6,6 +6,8 @@ wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser); #[cfg_attr(web, wasm_bindgen_test::wasm_bindgen_test)] #[cfg_attr(not(web), tokio::test(flavor = "current_thread"))] +#[ignore] +// this test currently must be run manually, as it requires a Linera proxy to be running on 127.0.0.1:9000. async fn client() { use linera_rpc::config::*; use std::time::Duration;