File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,8 @@ func logResults(allResults []*Results) {
108
108
}
109
109
110
110
func TestPerformance (t * testing.T ) {
111
- if testing .Short () {
111
+ // TODO (#93112) skip test until appropriate timeout established
112
+ if testing .Short () || true {
112
113
// TODO (#61854) find why flakiness is caused by etcd connectivity before enabling always
113
114
t .Skip ("Skipping because we want to run short tests" )
114
115
}
Original file line number Diff line number Diff line change 69
69
70
70
// TestSchedule100Node3KPods schedules 3k pods on 100 nodes.
71
71
func TestSchedule100Node3KPods (t * testing.T ) {
72
- if testing .Short () {
72
+ // TODO (#93112) skip test until appropriate timeout established
73
+ if testing .Short () || true {
73
74
t .Skip ("Skipping because we want to run short tests" )
74
75
}
75
76
You can’t perform that action at this time.
0 commit comments