mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
Fix 61854, skip for short tests
This commit is contained in:
parent
c8841cea30
commit
9d9a45893c
@ -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()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user