From ddc88ec41b816cd939a6f2a9b0a60d45bb353a78 Mon Sep 17 00:00:00 2001 From: Nick Santos Date: Thu, 26 Mar 2020 17:10:30 -0400 Subject: [PATCH] circleci: run make shorttest on windows. flag off a large swath of broken tests (#3132) --- pkg/watch/notify_test.go | 2 ++ pkg/watch/watcher_naive_test.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/watch/notify_test.go b/pkg/watch/notify_test.go index b719cd60..1d3a7c05 100644 --- a/pkg/watch/notify_test.go +++ b/pkg/watch/notify_test.go @@ -1,3 +1,5 @@ +// +build !windows + package watch import ( diff --git a/pkg/watch/watcher_naive_test.go b/pkg/watch/watcher_naive_test.go index 3b3419ba..35ec894b 100644 --- a/pkg/watch/watcher_naive_test.go +++ b/pkg/watch/watcher_naive_test.go @@ -1,4 +1,4 @@ -// +build !darwin +// +build !darwin,!windows package watch