Skip to content

Commit

Permalink
Skip failing E2E test (#260)
Browse files Browse the repository at this point in the history
Co-authored-by: David Simansky <[email protected]>
  • Loading branch information
knative-prow-robot and dsimansk authored Oct 19, 2022
1 parent 308d397 commit a18a909
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hack/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2020 The Knative Authors
#
Expand Down
3 changes: 3 additions & 0 deletions test/e2e/kn_admin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ func TestKnAdminPlugin(t *testing.T) {
}

func TestKnAdminPluginWithNoKubectlContext(t *testing.T) {
if strings.Contains(os.Getenv("JOB_NAME"), "release") {
t.Skip("Skip in release job, due to serviceAccount clash.")
}
e2eTest := newE2ETest(t)
assert.Assert(t, e2eTest != nil)
defer func() {
Expand Down

0 comments on commit a18a909

Please sign in to comment.