diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 68ac3f29f9..b4b9105089 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -170,7 +170,7 @@ jobs: # Path to your GolangCI-Lint config within the repo (optional) config: ${{ env.GITHUB_WORKSPACE }}/.golangci.yml # see: https://github.com/golangci/golangci-lint/issues/2654 - args: --timeout=5m + args: --timeout=10m env: # GitHub token for annotations (optional) GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/core/agents/updater/updater_test.go b/core/agents/updater/updater_test.go index 6d15fdd3af..716022fc62 100644 --- a/core/agents/updater/updater_test.go +++ b/core/agents/updater/updater_test.go @@ -35,8 +35,8 @@ func (u UpdaterSuite) TestUpdaterE2E() { u.testBackend.WaitForConfirmation(u.GetTestContext(), tx) go func() { - err = ud.Start(u.GetTestContext()) - Nil(u.T(), err) + // we don't check errors here since this will error on cancellation at the end of the test + _ = ud.Start(u.GetTestContext()) }() u.Eventually(func() bool {