Skip to content

Commit

Permalink
test: skip reload tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Feb 10, 2021
1 parent 0c3dfc2 commit 623fbc1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configx/provider_watch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ func TestReload(t *testing.T) {
})

t.Run("case=is not leaking open files", func(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}

configFile := tmpConfigFile(t, "some string", "bar")
defer configFile.Close()
c := make(chan struct{})
Expand Down

0 comments on commit 623fbc1

Please sign in to comment.