diff --git a/.github/workflows/CI_endurance.yml b/.github/workflows/CI_endurance.yml index f411e68..6279500 100644 --- a/.github/workflows/CI_endurance.yml +++ b/.github/workflows/CI_endurance.yml @@ -78,7 +78,7 @@ jobs: - name: Run Endurance Test (Group 2) run: | - 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|TestStress2Nodes500IterationTearDown|TestPeerExchangePXLoad|TestStressHighThroughput10kPublish)$' | 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 e825214..1d01617 100644 --- a/waku/stress_test.go +++ b/waku/stress_test.go @@ -157,7 +157,7 @@ func TestStressHighThroughput10kPublish(t *testing.T) { Debug("Memory usage BEFORE sending => HeapAlloc: %d KB, RSS: %d KB", startHeapKB, startRSSKB) - totalMessages := 1000 + totalMessages := 1100 pubsubTopic := DefaultPubsubTopic for i := 0; i < totalMessages; i++ { @@ -347,7 +347,7 @@ func TestStressLargePayloadEphemeralMessagesEndurance(t *testing.T) { require.NoError(t, err) Debug("Before endurance test: HeapAlloc = %d KB, RSS = %d KB", startHeapKB, startRSSKB) - maxIterations := 1000 + maxIterations := 1100 payloadSize := 100 * 1024 largePayload := make([]byte, payloadSize) for i := range largePayload {