Skip to content

Commit b38ac27

Browse files
committed
bp update
1 parent cb383dc commit b38ac27

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
519eec21abfddb4d65bbde57e4f3b13368f54e6b
1+
b655ba1347f9bd549afec9f383b5154ca4747c37

boilerplate/openshift/golang-osd-e2e/standard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ e2e-binary-build:
6666

6767
# push e2e image tagged as latest and as repo commit hash
6868
.PHONY: e2e-image-build-push
69-
e2e-image-build-push:
69+
e2e-image-build-push: container-engine-login
7070
${CONTAINER_ENGINE} build --pull -f test/e2e/Dockerfile -t $(E2E_IMAGE_REGISTRY)/$(E2E_IMAGE_REPOSITORY)/$(E2E_IMAGE_NAME):$(E2E_IMAGE_TAG) .
7171
${CONTAINER_ENGINE} tag $(E2E_IMAGE_REGISTRY)/$(E2E_IMAGE_REPOSITORY)/$(E2E_IMAGE_NAME):$(E2E_IMAGE_TAG) $(E2E_IMAGE_REGISTRY)/$(E2E_IMAGE_REPOSITORY)/$(E2E_IMAGE_NAME):latest
7272
${CONTAINER_ENGINE} push $(E2E_IMAGE_REGISTRY)/$(E2E_IMAGE_REPOSITORY)/$(E2E_IMAGE_NAME):$(E2E_IMAGE_TAG)

test/e2e/validation_webhook_runner_test.go

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
// THIS FILE IS GENERATED BY BOILERPLATE. DO NOT EDIT.
12
//go:build osde2e
2-
// +build osde2e
33

44
package osde2etests
55

@@ -14,16 +14,15 @@ import (
1414

1515
const (
1616
testResultsDirectory = "/test-run-results"
17-
jUnitOutputFilename = "junit-managed-cluster-validating-webhooks.xml"
17+
jUnitOutputFilename = "junit-validation-webhook.xml"
1818
)
1919

2020
// Test entrypoint. osde2e runs this as a test suite on test pod.
21-
func TestClusterValidatingWebhooks(t *testing.T) {
21+
func TestValidationWebhook(t *testing.T) {
2222
RegisterFailHandler(Fail)
2323
suiteConfig, reporterConfig := GinkgoConfiguration()
2424
if _, ok := os.LookupEnv("DISABLE_JUNIT_REPORT"); !ok {
2525
reporterConfig.JUnitReport = filepath.Join(testResultsDirectory, jUnitOutputFilename)
2626
}
27-
RunSpecs(t, "Managed Cluster Validating Webhooks", suiteConfig, reporterConfig)
28-
27+
RunSpecs(t, "Validation Webhook", suiteConfig, reporterConfig)
2928
}

0 commit comments

Comments
 (0)