disable flaky and irrelevant tests

This commit is contained in:
vyzo 2020-04-11 16:11:58 +03:00
parent 9904d69cde
commit 3368bed1d4
3 changed files with 4 additions and 0 deletions

View File

@ -219,6 +219,7 @@ func TestSimpleDiscovery(t *testing.T) {
}
func TestGossipSubDiscoveryAfterBootstrap(t *testing.T) {
t.Skip("flaky test disabled")
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

View File

@ -369,6 +369,7 @@ func TestGossipsubGossip(t *testing.T) {
}
func TestGossipsubGossipPiggyback(t *testing.T) {
t.Skip("test no longer relevant; gossip propagation has become eager")
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
hosts := getNetHosts(t, ctx, 20)

View File

@ -386,6 +386,8 @@ func TestSubscriptionLeaveNotification(t *testing.T) {
}
func TestSubscriptionManyNotifications(t *testing.T) {
t.Skip("flaky test disabled")
ctx, cancel := context.WithCancel(context.Background())
defer cancel()