chore(coderd/util/tz): skip flaky test (#8652)

This commit is contained in:
Cian Johnston 2023-07-21 17:31:52 +01:00 committed by GitHub
parent 001670cc13
commit 539fcf9e6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ func Test_TimezoneIANA(t *testing.T) {
// Not all Linux operating systems are guaranteed to have localtime!
t.Skip("localtime doesn't exist!")
}
if runtime.GOOS == "windows" {
// This test can be flaky on some Windows runners :(
t.Skip("This test is flaky under Windows.")
}
oldEnv, found := os.LookupEnv("TZ")
if found {
require.NoError(t, os.Unsetenv("TZ"))