Skip to content

Commit bd9be7b

Browse files
authored
Merge pull request kubernetes#93113 from hasheddan/integration-skip
Skip failing scheduler integration tests until they can be run successfully
2 parents 1f4da99 + a70b78e commit bd9be7b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/integration/ipamperf/ipam_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ func logResults(allResults []*Results) {
108108
}
109109

110110
func TestPerformance(t *testing.T) {
111-
if testing.Short() {
111+
// TODO (#93112) skip test until appropriate timeout established
112+
if testing.Short() || true {
112113
// TODO (#61854) find why flakiness is caused by etcd connectivity before enabling always
113114
t.Skip("Skipping because we want to run short tests")
114115
}

test/integration/scheduler_perf/scheduler_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ var (
6969

7070
// TestSchedule100Node3KPods schedules 3k pods on 100 nodes.
7171
func TestSchedule100Node3KPods(t *testing.T) {
72-
if testing.Short() {
72+
// TODO (#93112) skip test until appropriate timeout established
73+
if testing.Short() || true {
7374
t.Skip("Skipping because we want to run short tests")
7475
}
7576

0 commit comments

Comments
 (0)