Merge pull request #110774 from kinvolk/rata/kubelet-short-tests

pkg/kubelet: skip long test on short mode
This commit is contained in:
Kubernetes Prow Robot
2022-07-07 20:36:05 -07:00
committed by GitHub
5 changed files with 40 additions and 0 deletions

View File

@@ -503,6 +503,10 @@ func TestUpdateExistingNodeStatus(t *testing.T) {
}
func TestUpdateExistingNodeStatusTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
attempts := int64(0)
failureCallbacks := int64(0)