From 24e8a9d9c41eef6b500775c25374e24ace1b66ac Mon Sep 17 00:00:00 2001 From: Alexander Scheel Date: Tue, 29 Nov 2022 13:30:25 -0500 Subject: [PATCH] Disable nginx integration test in pki test suites (#18141) Signed-off-by: Alexander Scheel Signed-off-by: Alexander Scheel --- builtin/logical/pkiext/nginx_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin/logical/pkiext/nginx_test.go b/builtin/logical/pkiext/nginx_test.go index dba2fa4443..9992627c84 100644 --- a/builtin/logical/pkiext/nginx_test.go +++ b/builtin/logical/pkiext/nginx_test.go @@ -405,6 +405,8 @@ func CheckWithGo(t *testing.T, rootCert string, clientCert string, clientChain [ } func RunNginxRootTest(t *testing.T, caKeyType string, caKeyBits int, caUsePSS bool, roleKeyType string, roleKeyBits int, roleUsePSS bool) { + t.Skipf("flaky in CI") + b, s := pki.CreateBackendWithStorage(t) testSuffix := fmt.Sprintf(" - %v %v %v - %v %v %v", caKeyType, caKeyType, caUsePSS, roleKeyType, roleKeyBits, roleUsePSS)