Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Longer timeout for deletion #2737

Merged
merged 3 commits into from Apr 17, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/e2e/cli_test.go
Expand Up @@ -373,7 +373,7 @@ func (s *CLISuite) TestWorkflowDelete() {
Workflow("@smoke/basic.yaml").
When().
SubmitWorkflow().
WaitForWorkflow(30*time.Second).
WaitForWorkflow(1*time.Minute).
Given().
RunCli([]string{"delete", "--all", "-l", "argo-e2e"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
Expand All @@ -394,7 +394,7 @@ func (s *CLISuite) TestWorkflowDelete() {
}
}).
When().
WaitForWorkflow(30*time.Second).
WaitForWorkflow(1*time.Minute).
Given().
RunCli([]string{"delete", "--completed", "-l", "argo-e2e"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
Expand All @@ -407,7 +407,7 @@ func (s *CLISuite) TestWorkflowDelete() {
Workflow("@smoke/basic.yaml").
When().
SubmitWorkflow().
WaitForWorkflow(30*time.Second).
WaitForWorkflow(1*time.Minute).
Given().
RunCli([]string{"delete", "--older", "1d", "-l", "argo-e2e"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
Expand Down