Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Run Daily Test
run: |
set -euo pipefail
go test -count=10 -p=1 -v -timeout=360m ./waku \
go test -p=1 -v -timeout=360m ./waku -count=10 \
| tee testlogs.log

- name: Upload Test Logs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Repeated_tests_endurancce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
- name: Repeated test runs
run: |
set +e
for i in {1..80}; do
for i in {1..3}; do
echo "Iteration $i: measuring memory BEFORE the tests..."
go run tools/memory_record.go --iteration $i --phase start
echo "Running tests (iteration $i)..."
go test -v -tags '!stress' ./...
go test -tags=stress -p=1 -v -timeout=360m ./waku
echo "Iteration $i: measuring memory AFTER the tests..."
go run tools/memory_record.go --iteration $i --phase end
done
Expand Down
2 changes: 2 additions & 0 deletions waku/stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ func TestStressMemoryUsageForThreeNodes(t *testing.T) {
}

func TestStressStoreQuery5kMessagesWithPagination(t *testing.T) {
t.Skip("Skipping temporarily for CI performance or debug reasons")
Debug("Starting test")
runtime.GC()
nodeConfig := DefaultWakuConfig
Expand Down Expand Up @@ -159,6 +160,7 @@ func TestStressHighThroughput10kPublish(t *testing.T) {


func TestStressConnectDisconnect1kIteration(t *testing.T) {
t.Skip("Skipping temporarily for CI performance")
captureMemory(t.Name(), "at start")

node0Cfg := DefaultWakuConfig
Expand Down