File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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" ) {
You can’t perform that action at this time.
0 commit comments