From 6b3f0f764ede3ae543cd5525f1201e503c69bdad Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Wed, 2 Nov 2022 13:14:08 -0400 Subject: [PATCH] aws: Skip s3 test on Windows until we figure out why it times out Part-of: --- net/aws/tests/s3.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs index 511295ae..a7d0071d 100644 --- a/net/aws/tests/s3.rs +++ b/net/aws/tests/s3.rs @@ -22,6 +22,8 @@ fn init() { }); } +// The test times out on Windows for some reason, skip until we figure out why +#[cfg(not(target_os = "windows"))] #[test_with::env(AWS_ACCESS_KEY_ID)] #[test_with::env(AWS_SECRET_ACCESS_KEY)] #[tokio::test]