mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-02 05:53:07 +00:00
Modify tests Iterations for failed tests in job 27
This commit is contained in:
parent
292e13476f
commit
94cf62d436
2
.github/workflows/CI_endurance.yml
vendored
2
.github/workflows/CI_endurance.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressMemoryUsageForThreeNodes|TestStressStoreQuery5kMessagesWithPagination|TestStressConnectDisconnect500Iteration|TestStressHighThroughput10kPublish)$' | tee testlogs1.log
|
||||
go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressMemoryUsageForThreeNodes|TestStressStoreQuery5kMessagesWithPagination|TestStressHighThroughput10kPublish|TestStressLargePayloadEphemeralMessagesEndurance)$' | tee testlogs1.log
|
||||
|
||||
- name: Upload Test Logs (Group 1)
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
@ -86,7 +86,7 @@ func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) {
|
||||
}()
|
||||
|
||||
|
||||
iterations := 10000
|
||||
iterations := 3000
|
||||
|
||||
captureMemory(t.Name(), "at start")
|
||||
|
||||
@ -111,6 +111,7 @@ func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) {
|
||||
require.NoError(t, err, "Failed to query store messages")
|
||||
require.Greater(t, len(*storedmsgs.Messages), 0, "Expected at least one stored message")
|
||||
}
|
||||
Debug("##Iteration #%d",iterations)
|
||||
}
|
||||
|
||||
captureMemory(t.Name(), "at end")
|
||||
@ -173,7 +174,7 @@ func TestStressConnectDisconnect1kIteration(t *testing.T) {
|
||||
node1.StopAndDestroy()
|
||||
}()
|
||||
|
||||
iterations := 2000
|
||||
iterations := 1000
|
||||
for i := 1; i <= iterations; i++ {
|
||||
err := node0.ConnectPeer(node1)
|
||||
require.NoError(t, err, "Iteration %d: node0 failed to connect to node1", i)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user