diff --git a/e2e_test/src/reliant/lock.rs b/e2e_test/src/reliant/lock.rs index 8f9035a7..ef136cf7 100644 --- a/e2e_test/src/reliant/lock.rs +++ b/e2e_test/src/reliant/lock.rs @@ -15,6 +15,7 @@ use tonic::Request; const CLUSTER_ADDR: &str = "http://localhost:9000"; #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn test_lock_unlock_rpc() -> Result<(), Box> { let args = LockArgs { uid: "1111".to_string(), diff --git a/e2e_test/src/reliant/node_interact_test.rs b/e2e_test/src/reliant/node_interact_test.rs index c42d1468..d85a25ec 100644 --- a/e2e_test/src/reliant/node_interact_test.rs +++ b/e2e_test/src/reliant/node_interact_test.rs @@ -21,6 +21,7 @@ use tonic::Request; const CLUSTER_ADDR: &str = "http://localhost:9000"; #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn ping() -> Result<(), Box> { let mut fbb = flatbuffers::FlatBufferBuilder::new(); let payload = fbb.create_vector(b"hello world"); @@ -59,6 +60,7 @@ async fn ping() -> Result<(), Box> { } #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn make_volume() -> Result<(), Box> { let mut client = node_service_time_out_client(&CLUSTER_ADDR.to_string()).await?; let request = Request::new(MakeVolumeRequest { @@ -76,6 +78,7 @@ async fn make_volume() -> Result<(), Box> { } #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn list_volumes() -> Result<(), Box> { let mut client = node_service_time_out_client(&CLUSTER_ADDR.to_string()).await?; let request = Request::new(ListVolumesRequest { @@ -94,6 +97,7 @@ async fn list_volumes() -> Result<(), Box> { } #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn walk_dir() -> Result<(), Box> { println!("walk_dir"); // TODO: use writer @@ -150,6 +154,7 @@ async fn walk_dir() -> Result<(), Box> { } #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn read_all() -> Result<(), Box> { let mut client = node_service_time_out_client(&CLUSTER_ADDR.to_string()).await?; let request = Request::new(ReadAllRequest { @@ -167,6 +172,7 @@ async fn read_all() -> Result<(), Box> { } #[tokio::test] +#[ignore = "requires running RustFS server at localhost:9000"] async fn storage_info() -> Result<(), Box> { let mut client = node_service_time_out_client(&CLUSTER_ADDR.to_string()).await?; let request = Request::new(LocalStorageInfoRequest { metrics: true });