Merge pull request #8245 from influxdata/jw-tsi-appveyor

Skip TestCache_Deduplicate_Concurrent on windows
pull/8248/head
Jason Wilder 2017-04-04 11:04:22 -04:00 committed by GitHub
commit 4ac70efa48
1 changed files with 2 additions and 2 deletions

View File

@ -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)