File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
sdk/core/azure_core_amqp/src Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,9 @@ mod tests {
264
264
) ;
265
265
}
266
266
267
+ // On macOS, there is a periodic issue where loopback TCP connections fail.
268
+ // Disable these tests on macOS.
269
+ #[ cfg( not( target_os = "macos" ) ) ]
267
270
#[ tokio:: test]
268
271
async fn amqp_connection_open ( ) {
269
272
let address = std:: env:: var ( "TEST_BROKER_ADDRESS" ) ;
@@ -294,6 +297,7 @@ mod tests {
294
297
}
295
298
}
296
299
300
+ #[ cfg( not( target_os = "macos" ) ) ]
297
301
#[ tokio:: test]
298
302
async fn amqp_connection_close ( ) {
299
303
let address = std:: env:: var ( "TEST_BROKER_ADDRESS" ) ;
@@ -310,6 +314,7 @@ mod tests {
310
314
}
311
315
}
312
316
317
+ #[ cfg( not( target_os = "macos" ) ) ]
313
318
#[ tokio:: test]
314
319
async fn amqp_connection_close_with_error ( ) {
315
320
tracing_subscriber:: fmt:: init ( ) ;
You can’t perform that action at this time.
0 commit comments