Skip to content

Commit b8c5c45

Browse files
committed
Update Ginkgo skip
Signed-off-by: droctothorpe <[email protected]>
1 parent fb306ea commit b8c5c45

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

backend/test/testutil/test_utils.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ func CheckIfSkipping(stringValue string) {
6363
// Skip pipeline if name contains "GH-" (case-insensitive)
6464
if strings.Contains(strings.ToLower(stringValue), "_gh-") {
6565
issue := strings.Split(strings.ToLower(stringValue), "_gh-")[1]
66-
ginkgo.Skip(fmt.Sprintf("Skipping pipeline run test because of a known issue: https://github.com/kubeflow/pipelines/issues/%s", issue))
66+
ginkgo.Skip()
67+
fmt.Printf("Skipping pipeline run test because of a known issue: https://github.com/kubeflow/pipelines/issues/%s", issue)
68+
6769
}
6870
// Skip pipeline 'pipeline_submit_request' test if TLS is not enabled
6971
if !*config.TLSEnabled && strings.Contains(strings.ToLower(stringValue), "pipeline_submit_request") {

0 commit comments

Comments
 (0)