mirror of https://github.com/k3s-io/k3s
Merge pull request #61863 from satyasm/ipam-perf-cloud-mock
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fix 61854, skip for short tests **What this PR does / why we need it**: Skip for short tests, so as to avoid running for every PR. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #61854 **Special notes for your reviewer**: **Release note**: ```release-note Disable ipamperf integration tests as part of every PR verification. ```pull/8/head
commit
3cb73605aa
|
@ -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