disable dht TestPeriodicBootstrap on CI
Juan Batiz-Benet committed
Jan 24, 2015 at 10:30 UTC
8037235c6d8ec66e264502bed4ccfdb93fa243de
1 file changed
+4
routing/dht/dht_test.go
+4
@@ -19,6 +19,7 @@ import (
19
netutil "github.com/jbenet/go-ipfs/p2p/test/util"
20
routing "github.com/jbenet/go-ipfs/routing"
21
u "github.com/jbenet/go-ipfs/util"
22
+ ci "github.com/jbenet/go-ipfs/util/testutil/ci"
23
)
24
25
var testCaseValues = map[u.Key][]byte{}
@@ -330,6 +331,9 @@ func TestBootstrap(t *testing.T) {
331
332
func TestPeriodicBootstrap(t *testing.T) {
333
// t.Skip("skipping test to debug another")
334
+ if ci.IsRunning() {
335
+ t.Skip("skipping on CI. highly timing dependent")
336
+ }
337
if testing.Short() {
338
t.SkipNow()
339
}