From 73a53e38c4de5d5ade4f2cc9d0e56a18c2e7e35a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 16 Jan 2024 09:12:59 +0200 Subject: [PATCH] aws: s3: Disable remaining tests too for now They fail state changes, which cases `GstHarness` to abort. --- net/aws/tests/s3.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs index 295aec07..ba1b3d79 100644 --- a/net/aws/tests/s3.rs +++ b/net/aws/tests/s3.rs @@ -173,16 +173,19 @@ mod tests { delete_object(region.clone(), &bucket, &key).await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_simple() { do_s3_multipart_test("s3-test").await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_whitespace() { do_s3_multipart_test("s3 test").await; } + #[ignore = "failing, needs investigation"] #[tokio::test] async fn test_s3_multipart_unicode() { do_s3_multipart_test("s3 🧪 😱").await;