Skip TestCache_Deduplicate_Concurrent on windows
parent
386e769d7d
commit
4f850b5cff
|
@ -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