Skip failing scheduler integration tests until they can be run successfully

The IPAM and scheduler performance tests are currently causing
integration-master job to fail because of timeouts. They were not
previously running as part of integration-master, so we can disable them
without loss of test coverage. They should be re-enabled as part of fix
for #93112.

Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
This commit is contained in:
hasheddan 2020-07-15 10:28:35 -05:00
parent 30b0ebd6d4
commit a70b78e49a
No known key found for this signature in database
GPG Key ID: BD68BC686A14C271
2 changed files with 4 additions and 2 deletions

View File

@ -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")
}

View File

@ -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")
}