Skip to content

Commit 637eea1

Browse files
committed
Increase timeout
1 parent a7fca26 commit 637eea1

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
- name: Run Key Generation E2E tests
119119
run: |
120120
cd e2e
121-
go test -v -timeout=600s -run TestKeyGeneration
121+
go test -v -timeout=1200s -run TestKeyGeneration
122122
env:
123123
DOCKER_BUILDKIT: 1
124124

@@ -196,7 +196,7 @@ jobs:
196196
- name: Run Signing E2E tests
197197
run: |
198198
cd e2e
199-
go test -v -timeout=600s -run TestSigning
199+
go test -v -timeout=1200s -run TestSigning
200200
env:
201201
DOCKER_BUILDKIT: 1
202202

@@ -274,7 +274,7 @@ jobs:
274274
- name: Run Resharing E2E tests
275275
run: |
276276
cd e2e
277-
go test -v -timeout=600s -run TestResharing
277+
go test -v -timeout=1200s -run TestResharing
278278
env:
279279
DOCKER_BUILDKIT: 1
280280

e2e/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ clean:
3232
rm -f test_event_initiator.*
3333
rm -rf logs
3434
rm -rf coverage.*
35-
rm config.test.yaml
35+
rm -f config.test.yaml
3636
docker compose -f docker-compose.test.yaml down --remove-orphans 2>/dev/null || true
3737

3838
# Run tests with coverage

e2e/base_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import (
2626

2727
const (
2828
numNodes = 3
29-
keygenTimeout = 10 * time.Minute
30-
signingTimeout = 5 * time.Minute
29+
keygenTimeout = 15 * time.Minute
30+
signingTimeout = 10 * time.Minute
3131
)
3232

3333
type TestConfig struct {
@@ -362,7 +362,7 @@ func (s *E2ETestSuite) ShowRecentLogs(t *testing.T, nodeName string) {
362362
func (s *E2ETestSuite) WaitForNodesReady(t *testing.T) {
363363
t.Log("Waiting for all nodes to be ready to accept MPC requests...")
364364

365-
timeout := time.NewTimer(60 * time.Second)
365+
timeout := time.NewTimer(5 * time.Minute)
366366
defer timeout.Stop()
367367

368368
ticker := time.NewTicker(2 * time.Second)

e2e/reshare_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
const (
17-
resharingTimeout = 120 * time.Second
17+
resharingTimeout = 10 * time.Minute
1818
)
1919

2020
func TestResharing(t *testing.T) {

0 commit comments

Comments
 (0)