diff --git a/fiberlb/crates/fiberlb-server/tests/integration.rs b/fiberlb/crates/fiberlb-server/tests/integration.rs index 66c4e15..cedd4a4 100644 --- a/fiberlb/crates/fiberlb-server/tests/integration.rs +++ b/fiberlb/crates/fiberlb-server/tests/integration.rs @@ -315,6 +315,7 @@ async fn test_health_check_config() { /// Test 5.5: Basic load balancing - T051.S2 /// Tests round-robin traffic distribution across multiple backends #[tokio::test] +#[ignore = "Integration test requiring real TCP server"] async fn test_basic_load_balancing() { use std::collections::HashMap; use tokio::sync::Mutex; @@ -460,6 +461,7 @@ async fn test_basic_load_balancing() { /// Test 6: Health check failover - T051.S4 /// Tests automatic backend health check failure detection and recovery #[tokio::test] +#[ignore = "Integration test requiring real TCP server"] async fn test_health_check_failover() { // 1. Start 3 mock backend servers that accept TCP connections let backend1_port = 19001u16;