Unverified Commit 3cb73605 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

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. ```
parents 8b6a4e14 9d9a4589
...@@ -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