8000
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 001670c commit 539fcf9Copy full SHA for 539fcf9
coderd/util/tz/tz_test.go
@@ -31,6 +31,10 @@ func Test_TimezoneIANA(t *testing.T) {
31
// Not all Linux operating systems are guaranteed to have localtime!
32
t.Skip("localtime doesn't exist!")
33
}
34
+ if runtime.GOOS == "windows" {
35
+ // This test can be flaky on some Windows runners :(
36
+ t.Skip("This test is flaky under Windows.")
37
+ }
38
oldEnv, found := os.LookupEnv("TZ")
39
if found {
40
require.NoError(t, os.Unsetenv("TZ"))
0 commit comments