From 9aa0bfe8b09b78dbb684ca1127527a5673238042 Mon Sep 17 00:00:00 2001 From: Tim Allclair Date: Wed, 26 Jul 2017 11:22:01 -0700 Subject: [PATCH] Move the audit e2e test out of the node SIG --- test/e2e/BUILD | 1 + test/e2e/{node => }/audit.go | 4 ++-- test/e2e/node/BUILD | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) rename test/e2e/{node => }/audit.go (98%) diff --git a/test/e2e/BUILD b/test/e2e/BUILD index 7db8785ba43..ab606fd5137 100644 --- a/test/e2e/BUILD +++ b/test/e2e/BUILD @@ -49,6 +49,7 @@ go_test( go_library( name = "go_default_library", srcs = [ + "audit.go", "certificates.go", "dashboard.go", "e2e.go", diff --git a/test/e2e/node/audit.go b/test/e2e/audit.go similarity index 98% rename from test/e2e/node/audit.go rename to test/e2e/audit.go index 4a9db9741f1..1d5ba5064fe 100644 --- a/test/e2e/node/audit.go +++ b/test/e2e/audit.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package node +package e2e import ( "bufio" @@ -29,7 +29,7 @@ import ( . "github.com/onsi/gomega" ) -var _ = SIGDescribe("Advanced Audit [Feature:Audit]", func() { +var _ = framework.KubeDescribe("Advanced Audit [Feature:Audit]", func() { f := framework.NewDefaultFramework("audit") It("should audit API calls", func() { diff --git a/test/e2e/node/BUILD b/test/e2e/node/BUILD index 33c41869c89..d12ea9c1bba 100644 --- a/test/e2e/node/BUILD +++ b/test/e2e/node/BUILD @@ -11,7 +11,6 @@ go_library( name = "go_default_library", srcs = [ "apparmor.go", - "audit.go", "kubelet.go", "kubelet_perf.go", "nodeoutofdisk.go",