From 7f9a9e2e82d20e903db8a5f1334f342fa7088106 Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Tue, 25 Sep 2018 14:15:35 +0100 Subject: [PATCH] ignore key_server_cluster randomly failing tests (#9639) * ignore key_server_cluster randomly failing tests, related to #9635 * added explanation comment to test #[ignore] --- secret_store/src/key_server_cluster/cluster.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/secret_store/src/key_server_cluster/cluster.rs b/secret_store/src/key_server_cluster/cluster.rs index b48290a4f..1c0986aad 100644 --- a/secret_store/src/key_server_cluster/cluster.rs +++ b/secret_store/src/key_server_cluster/cluster.rs @@ -1431,7 +1431,11 @@ pub mod tests { } } + // test ignored because of + // + // https://github.com/paritytech/parity-ethereum/issues/9635 #[test] + #[ignore] fn schnorr_signing_session_completes_if_node_does_not_have_a_share() { //::logger::init_log(); let mut core = Core::new().unwrap(); @@ -1480,7 +1484,11 @@ pub mod tests { session1.wait().unwrap_err(); } + // test ignored because of + // + // https://github.com/paritytech/parity-ethereum/issues/9635 #[test] + #[ignore] fn ecdsa_signing_session_completes_if_node_does_not_have_a_share() { //::logger::init_log(); let mut core = Core::new().unwrap();