Merge pull request #8245 from influxdata/jw-tsi-appveyor
Skip TestCache_Deduplicate_Concurrent on windowspull/8248/head
commit
4ac70efa48
|
@ -519,8 +519,8 @@ func TestCache_CacheWriteMemoryExceeded(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestCache_Deduplicate_Concurrent(t *testing.T) {
|
||||
if testing.Short() || os.Getenv("GORACE") != "" {
|
||||
t.Skip("Skipping test in short mode.")
|
||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
|
||||
t.Skip("Skipping test in short, race, appveyor mode.")
|
||||
}
|
||||
|
||||
values := make(map[string][]Value)
|
||||
|
|
Loading…
Reference in New Issue