From 4f850b5cffa2a0c96248417a8b0aee34a77457d3 Mon Sep 17 00:00:00 2001 From: Jason Wilder Date: Tue, 4 Apr 2017 08:48:55 -0600 Subject: [PATCH] Skip TestCache_Deduplicate_Concurrent on windows --- tsdb/engine/tsm1/cache_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsdb/engine/tsm1/cache_test.go b/tsdb/engine/tsm1/cache_test.go index c82dd65d98..a7637ea49e 100644 --- a/tsdb/engine/tsm1/cache_test.go +++ b/tsdb/engine/tsm1/cache_test.go @@ -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)