From 729ba381667affe3269a60390f8f7e75bc63c44f Mon Sep 17 00:00:00 2001 From: gsstoykov Date: Wed, 6 Aug 2025 12:50:33 +0300 Subject: [PATCH 1/2] fix: Disable e2e tests Signed-off-by: gsstoykov --- tests/e2e/account/info.rs | 1 + tests/e2e/contract/info.rs | 1 + tests/e2e/file/contents.rs | 1 + tests/e2e/network_version_info.rs | 1 + tests/e2e/schedule/info.rs | 1 + tests/e2e/token/info.rs | 1 + tests/e2e/topic/info.rs | 1 + 7 files changed, 7 insertions(+) diff --git a/tests/e2e/account/info.rs b/tests/e2e/account/info.rs index 0f5650324..28f99308b 100644 --- a/tests/e2e/account/info.rs +++ b/tests/e2e/account/info.rs @@ -122,6 +122,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/contract/info.rs b/tests/e2e/contract/info.rs index b0269692c..6e05ae6cb 100644 --- a/tests/e2e/contract/info.rs +++ b/tests/e2e/contract/info.rs @@ -173,6 +173,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/file/contents.rs b/tests/e2e/file/contents.rs index 52396814c..063ffa3c5 100644 --- a/tests/e2e/file/contents.rs +++ b/tests/e2e/file/contents.rs @@ -190,6 +190,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn query_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/network_version_info.rs b/tests/e2e/network_version_info.rs index 4462bdb59..5dec140e3 100644 --- a/tests/e2e/network_version_info.rs +++ b/tests/e2e/network_version_info.rs @@ -85,6 +85,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config: _, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/schedule/info.rs b/tests/e2e/schedule/info.rs index 4602d1d8b..dd74ea689 100644 --- a/tests/e2e/schedule/info.rs +++ b/tests/e2e/schedule/info.rs @@ -223,6 +223,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/token/info.rs b/tests/e2e/token/info.rs index 10814ff33..5b97745ee 100644 --- a/tests/e2e/token/info.rs +++ b/tests/e2e/token/info.rs @@ -271,6 +271,7 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> { let Some(TestEnvironment { config: _, client }) = setup_nonfree() else { return Ok(()); diff --git a/tests/e2e/topic/info.rs b/tests/e2e/topic/info.rs index b3322abb8..aebdf2591 100644 --- a/tests/e2e/topic/info.rs +++ b/tests/e2e/topic/info.rs @@ -106,6 +106,7 @@ async fn query_cost_small_max() -> anyhow::Result<()> { } #[tokio::test] +#[ignore] async fn query_cost_insufficient_tx_fee() -> anyhow::Result<()> { let Some(TestEnvironment { config: _, client }) = setup_nonfree() else { return Ok(()); From c8e099f1da108e8224704dd4698d69ac57d98d55 Mon Sep 17 00:00:00 2001 From: gsstoykov Date: Wed, 6 Aug 2025 12:56:18 +0300 Subject: [PATCH 2/2] fix: format Signed-off-by: gsstoykov --- tests/e2e/topic/info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/topic/info.rs b/tests/e2e/topic/info.rs index aebdf2591..dea35594e 100644 --- a/tests/e2e/topic/info.rs +++ b/tests/e2e/topic/info.rs @@ -106,7 +106,7 @@ async fn query_cost_small_max() -> anyhow::Result<()> { } #[tokio::test] -#[ignore] +#[ignore] async fn query_cost_insufficient_tx_fee() -> anyhow::Result<()> { let Some(TestEnvironment { config: _, client }) = setup_nonfree() else { return Ok(());