Add all 8 tests to yml file & increase iterations

This commit is contained in:
aya 2025-05-17 23:51:19 +03:00
parent 69f335eedd
commit d964b3e017
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ jobs:
shell: bash
run: |
set -euo pipefail
go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes2kIterationTearDown|TestPeerExchangePXLoad)$' | tee testlogs2.log
go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes2kIterationTearDown|TestPeerExchangePXLoad|TestStressConnectDisconnect1kIteration)$' | tee testlogs2.log
- name: Upload Test Logs (Group 2)
uses: actions/upload-artifact@v4

View File

@ -86,7 +86,7 @@ func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) {
}()
iterations := 4000
iterations := 10000
captureMemory(t.Name(), "at start")
@ -137,7 +137,7 @@ func TestStressHighThroughput10kPublish(t *testing.T) {
captureMemory(t.Name(), "at start")
const totalMessages = 1200
const totalMessages = 5000
var pubsubTopic = DefaultPubsubTopic
for i := 0; i < totalMessages; i++ {