Index: reqwest/tests/proxy.rs
===================================================================
--- reqwest.orig/tests/proxy.rs
+++ reqwest/tests/proxy.rs
@@ -162,3 +162,3 @@ async fn test_no_proxy() {
-#[cfg_attr(not(feature = "__internal_proxy_sys_no_cache"), ignore)]
+#[ignore = "observed to fail on debci"]
 #[tokio::test]
 async fn test_using_system_proxy() {
Index: reqwest/src/proxy.rs
===================================================================
--- reqwest.orig/src/proxy.rs
+++ reqwest/src/proxy.rs
@@ -1363,2 +1363,3 @@ mod tests {
     #[test]
+    #[ignore = "observed to fail on debci"]
     fn test_get_sys_proxies_in_cgi() {
@@ -1393,6 +1394,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore = "observed to fail on debci"]
     fn test_sys_no_proxy() {
         // Stop other threads from modifying process-global ENV while we are.
         let _lock = ENVLOCK.lock();
@@ -1535,6 +1537,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore = "observed to fail on debci"]
     fn test_empty_sys_no_proxy() {
         // Stop other threads from modifying process-global ENV while we are.
         let _lock = ENVLOCK.lock();
@@ -1562,6 +1565,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore = "observed to fail on debci"]
     fn test_no_proxy_load() {
         // Stop other threads from modifying process-global ENV while we are.
         let _lock = ENVLOCK.lock();
Index: reqwest/tests/timeouts.rs
===================================================================
--- reqwest.orig/tests/timeouts.rs
+++ reqwest/tests/timeouts.rs
@@ -63,3 +63,3 @@ async fn request_timeout() {
-#[cfg(not(any(target_arch = "wasm32",target_arch = "s390x")))]
+#[cfg(not(any(target_arch = "wasm32",target_arch = "s390x",target_arch = "arm")))]
 #[tokio::test]
 async fn connect_timeout() {
@@ -87,3 +87,4 @@ async fn connect_timeout() {
 #[cfg(not(target_arch = "wasm32"))]
+#[ignore = "observed to fail on debci"]
 #[tokio::test]
 async fn connect_many_timeout_succeeds() {
@@ -113,3 +114,3 @@ async fn connect_many_timeout_succeeds()
-#[cfg(not(target_arch = "wasm32"))]
+#[cfg(not(any(target_arch = "wasm32", target_arch = "arm")))]
 #[tokio::test]
 async fn connect_many_timeout() {
@@ -144,2 +145,3 @@ async fn connect_many_timeout() {
 #[tokio::test]
+#[cfg(not(any(target_arch = "arm", target_arch="aarch64")))]
 async fn response_timeout() {
 
