From df9b60a5bc62d51b90acefc6370e1ef78a581a8a Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Wed, 28 Sep 2022 17:03:03 +0200 Subject: [PATCH] chore: Ignore flaky redaction tests --- testing/matrix-sdk-integration-testing/src/tests/redaction.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/matrix-sdk-integration-testing/src/tests/redaction.rs b/testing/matrix-sdk-integration-testing/src/tests/redaction.rs index 066fbb2c6..dbb29b12c 100644 --- a/testing/matrix-sdk-integration-testing/src/tests/redaction.rs +++ b/testing/matrix-sdk-integration-testing/src/tests/redaction.rs @@ -23,6 +23,7 @@ async fn sync_once(client: &Client) -> Result<()> { Ok(()) } +#[ignore = "Broken since synapse update, see #1069"] #[tokio::test(flavor = "multi_thread", worker_threads = 4)] async fn test_redacting_name() -> Result<()> { let tamatoa = get_client_for_user("tamatoa".to_owned()).await?; @@ -91,6 +92,7 @@ async fn test_redacting_name() -> Result<()> { Ok(()) } +#[ignore = "Broken since synapse update, see #1069"] #[tokio::test(flavor = "multi_thread", worker_threads = 4)] async fn test_redacting_name_static() -> Result<()> { let tamatoa = get_client_for_user("tamatoa".to_owned()).await?;