Skip to content

Commit

Permalink
Remove alpha1 Runs Client setup in init test
Browse files Browse the repository at this point in the history
This commit removes the alpha1 Runs client setup in init_test
because the v1alpha1 Run support has been removed according to
TEP-114. The error occurs during e2e tests that is introduced as
a flake:
ie. https://storage.googleapis.com/tekton-prow/pr-logs/pull/tektoncd_pipeline/6567/pull-tekton-pipeline-alpha-integration-tests/1649045464097492992/build-log.txt
  • Loading branch information
JeromeJu authored and tekton-robot committed Apr 24, 2023
1 parent a0b5cc5 commit 8e8c163
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion test/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ type clients struct {
V1beta1TaskRunClient v1beta1.TaskRunInterface
V1beta1PipelineRunClient v1beta1.PipelineRunInterface
V1beta1CustomRunClient v1beta1.CustomRunInterface
V1alpha1RunClient v1alpha1.RunInterface
V1alpha1ResolutionRequestclient resolutionv1alpha1.ResolutionRequestInterface
V1alpha1VerificationPolicyClient v1alpha1.VerificationPolicyInterface
V1PipelineClient v1.PipelineInterface
Expand Down
9 changes: 0 additions & 9 deletions test/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,6 @@ func getCRDYaml(ctx context.Context, cs *clients, ns string) ([]byte, error) {
printOrAdd(i)
}

v1alpha1Runs, err := cs.V1alpha1RunClient.List(ctx, metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get v1alpha1 runs: %w", err)
}
for _, i := range v1alpha1Runs.Items {
i.SetManagedFields(nil)
printOrAdd(i)
}

v1beta1CustomRuns, err := cs.V1beta1CustomRunClient.List(ctx, metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get v1beta1 customruns: %w", err)
Expand Down

0 comments on commit 8e8c163

Please sign in to comment.