We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231fc26 commit 942e902Copy full SHA for 942e902
coderd/azureidentity/azureidentity_test.go
@@ -4,6 +4,7 @@ import (
4
"context"
5
"crypto/x509"
6
"encoding/pem"
7
+ "runtime"
8
"testing"
9
"time"
10
@@ -14,6 +15,11 @@ import (
14
15
16
func TestValidate(t *testing.T) {
17
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
+
23
mustTime := func(layout string, value string) time.Time {
24
ti, err := time.Parse(layout, value)
25
require.NoError(t, err)
0 commit comments