diff --git a/.github/workflows/CI_endurance.yml b/.github/workflows/CI_endurance.yml index 4cea715..16a8fe6 100644 --- a/.github/workflows/CI_endurance.yml +++ b/.github/workflows/CI_endurance.yml @@ -89,7 +89,7 @@ jobs: shell: bash run: | set -euo pipefail - go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes500IterationTearDown|TestPeerExchangePXLoad)$' | tee testlogs2.log + go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes2kIterationTearDown|TestPeerExchangePXLoad)$' | tee testlogs2.log - name: Upload Test Logs (Group 2) uses: actions/upload-artifact@v4 diff --git a/waku/stress_test.go b/waku/stress_test.go index 80b54ee..45137ae 100644 --- a/waku/stress_test.go +++ b/waku/stress_test.go @@ -86,7 +86,7 @@ func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) { }() - iterations := 3000 + iterations := 4000 captureMemory(t.Name(), "at start") @@ -137,7 +137,7 @@ func TestStressHighThroughput10kPublish(t *testing.T) { captureMemory(t.Name(), "at start") - totalMessages := 5 + totalMessages := 2000 pubsubTopic := DefaultPubsubTopic for i := 0; i < totalMessages; i++ { @@ -169,7 +169,7 @@ func TestStressConnectDisconnect1kIteration(t *testing.T) { node1.StopAndDestroy() }() - iterations := 1000 + iterations := 2000 for i := 1; i <= iterations; i++ { err := node0.ConnectPeer(node1) require.NoError(t, err, "Iteration %d: node0 failed to connect to node1", i) @@ -196,7 +196,7 @@ func TestStressRandomNodesInMesh(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) minNodes := 5 - maxNodes := 10 + maxNodes := 20 nodes := make([]*WakuNode, 0, maxNodes) for i := 0; i < minNodes; i++ {