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

chore: remove checking container image id results #1081

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions tests/release/pipelines/rh_push_to_external_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"encoding/json"
"fmt"
"os"
"regexp"
"time"

"github.com/devfile/library/v2/pkg/util"
Expand Down Expand Up @@ -37,7 +36,6 @@ var _ = framework.ReleasePipelinesSuiteDescribe("[HACBS-1571]test-release-e2e-pu
AfterEach(framework.ReportFailure(&fw))
var err error
var devNamespace, managedNamespace, compName, additionalCompName string
var avgControllerQueryTimeout = 5 * time.Minute

var imageIDs []string
var pyxisKeyDecoded, pyxisCertDecoded []byte
Expand Down Expand Up @@ -300,7 +298,7 @@ var _ = framework.ReleasePipelinesSuiteDescribe("[HACBS-1571]test-release-e2e-pu
}, releasecommon.ReleasePipelineRunCompletionTimeout, constants.PipelineRunPollingInterval).Should(Succeed())
})

It("validate the result of task create-pyxis-image contains image ids", func() {
/* It("validate the result of task create-pyxis-image contains image ids", func() {
Eventually(func() []string {
re := regexp.MustCompile("[a-fA-F0-9]{24}")

Expand Down Expand Up @@ -331,7 +329,8 @@ var _ = framework.ReleasePipelinesSuiteDescribe("[HACBS-1571]test-release-e2e-pu

return imageIDs
}, avgControllerQueryTimeout, releasecommon.DefaultInterval).Should(HaveLen(2))
})
})*/
// IDs are not stored in results anymore

It("tests that associated Release CR has completed for each Component's Snapshot", func() {
Eventually(func() error {
Expand Down
Loading