Fix 61854, skip for short tests

This commit is contained in:
Satyadeep Musuvathy 2018-03-28 14:56:42 -07:00
parent c8841cea30
commit 9d9a45893c

View File

@ -109,6 +109,11 @@ func logResults(allResults []*Results) {
}
func TestPerformance(t *testing.T) {
if testing.Short() {
// TODO (#61854) find why flakiness is caused by etcd connectivity before enabling always
t.Skip("Skipping because we want to run short tests")
}
apiURL, masterShutdown := util.StartApiserver()
defer masterShutdown()