Skip to content

Commit 942e902

Browse files
authored
fix: disable azureidentity test on darwin (#12979)
See https://github.com/coder/coder/issues/12978
1 parent 231fc26 commit 942e902

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

coderd/azureidentity/azureidentity_test.go

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
"crypto/x509"
66
"encoding/pem"
7+
"runtime"
78
"testing"
89
"time"
910

@@ -14,6 +15,11 @@ import (
1415

1516
func TestValidate(t *testing.T) {
1617
t.Parallel()
18+
if runtime.GOOS == "darwin" {
19+
// This test fails on MacOS for some reason. See https://github.com/coder/coder/issues/12978
20+
t.Skip()
21+
}
22+
1723
mustTime := func(layout string, value string) time.Time {
1824
ti, err := time.Parse(layout, value)
1925
require.NoError(t, err)

0 commit comments

Comments
 (0)