Skip to content

Commit

Permalink
skip TestProvidesMany on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Jan 14, 2022
1 parent 790a18d commit f6ea5b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dht_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"errors"
"fmt"
"math/rand"
"runtime"
"sort"
"strings"
"sync"
Expand Down Expand Up @@ -858,6 +859,9 @@ func TestPeriodicRefresh(t *testing.T) {
}

func TestProvidesMany(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping due to #760")
}
if detectrace.WithRace() {
t.Skip("skipping due to race detector max goroutines")
}
Expand Down

0 comments on commit f6ea5b3

Please sign in to comment.