mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 03:11:40 +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) {
|
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()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user