diff --git a/test/integration/ipamperf/ipam_test.go b/test/integration/ipamperf/ipam_test.go index 0eea9d15a7a..139c41ffebf 100644 --- a/test/integration/ipamperf/ipam_test.go +++ b/test/integration/ipamperf/ipam_test.go @@ -108,7 +108,8 @@ func logResults(allResults []*Results) { } func TestPerformance(t *testing.T) { - if testing.Short() { + // TODO (#93112) skip test until appropriate timeout established + if testing.Short() || true { // TODO (#61854) find why flakiness is caused by etcd connectivity before enabling always t.Skip("Skipping because we want to run short tests") } diff --git a/test/integration/scheduler_perf/scheduler_test.go b/test/integration/scheduler_perf/scheduler_test.go index f9e23e3436e..5744eb11324 100644 --- a/test/integration/scheduler_perf/scheduler_test.go +++ b/test/integration/scheduler_perf/scheduler_test.go @@ -69,7 +69,8 @@ var ( // TestSchedule100Node3KPods schedules 3k pods on 100 nodes. func TestSchedule100Node3KPods(t *testing.T) { - if testing.Short() { + // TODO (#93112) skip test until appropriate timeout established + if testing.Short() || true { t.Skip("Skipping because we want to run short tests") }