From 8f1f3db4622a82f38416030330f1da9d70ba896c Mon Sep 17 00:00:00 2001 From: George Blue Date: Wed, 4 Dec 2024 14:37:17 +0000 Subject: [PATCH] test: add label to test to allow for better test selection (#1397) --- acceptance-tests/mysql_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance-tests/mysql_test.go b/acceptance-tests/mysql_test.go index ecab56dc..b9830ac4 100644 --- a/acceptance-tests/mysql_test.go +++ b/acceptance-tests/mysql_test.go @@ -107,7 +107,7 @@ var _ = Describe("MySQL", Label("mysql"), func() { Expect(tlsCipher.Value).To(BeEmpty(), "Expected Mysql connection for app %s not to be encrypted", appOne.Name) }) - It("can create service keys with a public IP address", func() { + It("can create service keys with a public IP address", Label("public"), func() { By("creating a service instance with a public IP address") publicIPParams := services.WithParameters(map[string]any{"public_ip": true}) serviceInstance := services.CreateInstance("csb-google-mysql", "default", publicIPParams)