diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 21ec28ee45..b63790bd22 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -2283,11 +2283,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/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 752638fa04..06274a2402 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -2484,11 +2484,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();