Skip to content

Commit

Permalink
update go test timeout
Browse files Browse the repository at this point in the history
10m was not enough to complete the test.
  • Loading branch information
endorama committed Dec 13, 2024
1 parent df028ff commit 1b4a1f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
secrets: |-
EC_API_KEY:elastic-observability/elastic-cloud-observability-team-${{ matrix.environment }}-api-key
- run: cd functionaltests && go test -v -target "${{ matrix.environment }}" ./
- run: cd functionaltests && go test -v -timeout=20m -target "${{ matrix.environment }}" ./

notify:
if: always()
Expand Down
1 change: 0 additions & 1 deletion functionaltests/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ func TestUpgrade_8_15_4_to_8_16_0(t *testing.T) {
t.Logf("time elapsed: %s", time.Now().Sub(start))

// Upgrade to 8.16.0
// FIXME: the update failed because it took more than 10m
t.Log("upgrade to 8.16.0")
require.NoError(t, tf.Apply(ctx, ecTarget, name, terraform.Var("stack_version", "8.16.0")))
t.Logf("time elapsed: %s", time.Now().Sub(start))
Expand Down

0 comments on commit 1b4a1f2

Please sign in to comment.