From 4177ea74a72234246a442d2137d6ca2e63c522f5 Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Thu, 28 Dec 2017 14:41:23 +0100 Subject: [PATCH] swarm/pss: Skip tests for 3 and 4 node networks. --- swarm/pss/pss_test.go | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/swarm/pss/pss_test.go b/swarm/pss/pss_test.go index 1cd5587e89..492e764248 100644 --- a/swarm/pss/pss_test.go +++ b/swarm/pss/pss_test.go @@ -637,11 +637,19 @@ func worker(id int, jobs <-chan Job, rpcs map[discover.NodeID]*rpc.Client, pubke // // ( some tests are commented out because of resource limitations on Travis) func TestNetwork(t *testing.T) { - t.Run("3/2000/4/sock", testNetwork) - t.Run("4/2000/4/sock", testNetwork) - // t.Run("8/2000/4/sock", testNetwork) - // t.Run("16/2000/4/sock", testNetwork) - // t.Run("32/2000/4/sock", testNetwork) + //t.Run("3/2000/4/sock", testNetwork) + //t.Run("4/2000/4/sock", testNetwork) + t.Run("8/2000/4/sock", testNetwork) + t.Run("16/2000/4/sock", testNetwork) + t.Run("8/3000/4/sock", testNetwork) + t.Run("16/3000/4/sock", testNetwork) + //t.Run("32/2000/4/sock", testNetwork) + + t.Run("8/2000/4/sim", testNetwork) + t.Run("16/2000/4/sim", testNetwork) + t.Run("8/3000/4/sim", testNetwork) + t.Run("16/3000/4/sim", testNetwork) + //t.Run("32/2000/4/sim", testNetwork) // t.Run("64/2000/4/sim", testNetwork) }