Commit 9d9a4589 authored by Satyadeep Musuvathy's avatar Satyadeep Musuvathy

Fix 61854, skip for short tests

parent c8841cea
...@@ -109,6 +109,11 @@ func logResults(allResults []*Results) { ...@@ -109,6 +109,11 @@ func logResults(allResults []*Results) {
} }
func TestPerformance(t *testing.T) { 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() apiURL, masterShutdown := util.StartApiserver()
defer masterShutdown() defer masterShutdown()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment