From 54969265a57ab4486f64eb1c0cf9f0c8188c8d7d Mon Sep 17 00:00:00 2001 From: Ethan Dickson Date: Tue, 23 Jun 2026 14:10:41 +0000 Subject: [PATCH] chore: skip failing azureidentity test while under investigation (#26545) Backport of #26545 to release/2.29. Skips the failing azureidentity TestValidate while under investigation. The test fails on the release branch due to Azure instance-identity certificate chain verification (certificate signed by unknown authority), which is unrelated to release content. Ref: https://github.com/coder/internal/issues/1602 (cherry picked from commit a12b0518344dee37cf747b9a95770fbddbcecee8) --- coderd/azureidentity/azureidentity_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/coderd/azureidentity/azureidentity_test.go b/coderd/azureidentity/azureidentity_test.go index 9ed2750f454..c10bbfbe803 100644 --- a/coderd/azureidentity/azureidentity_test.go +++ b/coderd/azureidentity/azureidentity_test.go @@ -21,6 +21,7 @@ import ( func TestValidate(t *testing.T) { t.Parallel() + t.Skip("See https://github.com/coder/internal/issues/1602") if runtime.GOOS == "darwin" { // This test fails on MacOS for some reason. See https://github.com/coder/coder/issues/12978 t.Skip()