From f5f0cfcd1b82f859d75bbff72be5e301adc22571 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Sat, 28 Jan 2023 19:56:01 -0300 Subject: [PATCH] ignore fast-unstake remote test --- runtime/kusama/src/lib.rs | 5 +---- runtime/polkadot/src/lib.rs | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 01f6ff5c9fbe..c403c4f93538 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -2281,11 +2281,8 @@ mod remote_tests { } #[tokio::test] + #[ignore = "this test is meant to be executed manually"] async fn try_fast_unstake_all() { - if var("RUN_MIGRATION_TESTS").is_err() { - return - } - sp_tracing::try_init_simple(); let transport: Transport = var("WS").unwrap_or("wss://kusama-rpc.polkadot.io:443".to_string()).into(); diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 7fad3de66e81..9351a9196c1f 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -2483,11 +2483,8 @@ mod remote_tests { } #[tokio::test] + #[ignore = "this test is meant to be executed manually"] async fn try_fast_unstake_all() { - if var("RUN_MIGRATION_TESTS").is_err() { - return - } - sp_tracing::try_init_simple(); let transport: Transport = var("WS").unwrap_or("wss://rpc.polkadot.io:443".to_string()).into();