Skip to content

Commit

Permalink
test: Maybe fix TestPendingRetryWorkflowWithRetryStrategy. Fixes #2446 (
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec authored Mar 16, 2020
1 parent 3448ccf commit 5346609
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions test/e2e/functional_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,10 @@ spec:
b := wf.Status.Nodes.FindByDisplayName("b")
return wfv1.NodeSucceeded == a.Phase && wfv1.NodeSucceeded == b.Phase
}, "pods succeeded", 20*time.Second)
s.TearDownSuite()
}

// 128M is for argo executor
func (s *FunctionalSuite) TestPendingRetryWorkflowWithRetryStrategy() {
s.T().SkipNow()
s.Given().
Workflow(`
apiVersion: argoproj.io/v1alpha1
Expand Down Expand Up @@ -281,7 +279,6 @@ spec:
b := wf.Status.Nodes.FindByDisplayName("b(0)")
return wfv1.NodeSucceeded == a.Phase && wfv1.NodeSucceeded == b.Phase
}, "pods succeeded", 20*time.Second)
s.TearDownSuite()
}

func (s *FunctionalSuite) TestParameterAggregation() {
Expand Down
1 change: 0 additions & 1 deletion workflow/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ const (
// LabelKeyWorkflowTemplate is a label applied to Workflows that are submitted from Workflowtemplate
LabelKeyWorkflowTemplate = workflow.WorkflowFullName + "/workflow-template"


// ExecutorArtifactBaseDir is the base directory in the init container in which artifacts will be copied to.
// Each artifact will be named according to its input name (e.g: /argo/inputs/artifacts/CODE)
ExecutorArtifactBaseDir = "/argo/inputs/artifacts"
Expand Down

0 comments on commit 5346609

Please sign in to comment.