Skip to content

Commit

Permalink
Skip TestWatchStress in the CI
Browse files Browse the repository at this point in the history
It fails too often, and it's not *that* important of a test.
  • Loading branch information
arp242 committed Oct 13, 2022
1 parent ac3d3a5 commit d892de1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fsnotify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,10 @@ func isKqueue() bool {

// Verify the watcher can keep up with file creations/deletions when under load.
func TestWatchStress(t *testing.T) {
if isCI() {
t.Skip("fails too often on the CI")
}

// On NetBSD ioutil.ReadDir in sendDirectoryChangeEvents() returns EINVAL
// ~80% of the time:
//
Expand Down

0 comments on commit d892de1

Please sign in to comment.