Fix review points

This commit is contained in:
aya 2025-04-02 11:47:37 +02:00
parent 75bd92cfe3
commit dd76d0f864
6 changed files with 10 additions and 12 deletions

View File

@ -1,8 +1,9 @@
name: Endurance Tests
name: Bindings Tests
on:
push:
branches: [ "stress_test" ]
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
endurance:

View File

@ -1,8 +1,7 @@
name: Endurance Tests
on:
push:
branches: [ "stress_test" ]
workflow_dispatch:
jobs:
endurance1:

View File

@ -1,11 +1,8 @@
name: Repeated Test Suite
on:
push:
branches: [ "stress_test" ]
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
jobs:
repeated-tests:
runs-on: ubuntu-latest

2
.gitignore vendored
View File

@ -29,3 +29,5 @@ waku/store.sqlite3
waku/store.sqlite3-shm
waku/store.sqlite3-wal
waku/test_repeated_start_stop.log

View File

@ -300,7 +300,7 @@ func TestRelaySubscribeAndPeerCountChange(t *testing.T) {
node3Config.Relay = true
node3Config.Staticnodes = []string{node1Address[0].String()}
Debug("Creating Node3 with Node2 as a static node")
Debug("Creating Node3 with Node1 as a static node")
node3, err := StartWakuNode("Node3", &node3Config)
require.NoError(t, err, "Failed to start Node3")

View File

@ -73,7 +73,6 @@ func TestStressMemoryUsageForThreeNodes(t *testing.T) {
func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) {
Debug("Starting test")
runtime.GC()
time.Sleep(5 * time.Second)
nodeConfig := DefaultWakuConfig
nodeConfig.Relay = true
nodeConfig.Store = true