From 80f1dbc05f3a5ed96537a0f4f4b80db5032a2771 Mon Sep 17 00:00:00 2001
From: Mariano Cano <mariano@smallstep.com>
Date: Mon, 20 Apr 2020 18:50:59 -0700
Subject: [PATCH] Skip test on CI

---
 controllers/suite_test.go | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/controllers/suite_test.go b/controllers/suite_test.go
index d265eb3..2766370 100644
--- a/controllers/suite_test.go
+++ b/controllers/suite_test.go
@@ -16,6 +16,7 @@ limitations under the License.
 package controllers
 
 import (
+	"os"
 	"path/filepath"
 	"testing"
 
@@ -40,6 +41,10 @@ var k8sClient client.Client
 var testEnv *envtest.Environment
 
 func TestAPIs(t *testing.T) {
+	if os.Getenv("CI") == "true" {
+		t.SkipNow()
+	}
+
 	RegisterFailHandler(Fail)
 
 	RunSpecsWithDefaultAndCustomReporters(t,
-- 
GitLab