Skip to content

Commit

Permalink
chore: increate upgrade test timeout
Browse files Browse the repository at this point in the history
cleanup runner dir prior test starts

Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian committed Sep 22, 2024
1 parent a5dde8d commit b853ca7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@ jobs:
network-upgrade-names:
runs-on: upgrade-tester
steps:
- name: Cleanup build folder
run: |
sudo rm -rf ./* || true
sudo rm -rf ./.??* || true
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- name: Detect required Go version
Expand Down Expand Up @@ -220,6 +224,10 @@ jobs:
network-upgrade:
runs-on: upgrade-tester
steps:
- name: Cleanup build folder
run: |
sudo rm -rf ./* || true
sudo rm -rf ./.??* || true
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- name: Detect required Go version
Expand Down
2 changes: 1 addition & 1 deletion make/test-upgrade.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ genesis: $(GENESIS_DEST)

.PHONY: test
test: $(COSMOVISOR) init
$(GO_TEST) -run "^\QTestUpgrade\E$$" -tags e2e.upgrade -timeout 60m -v -args \
$(GO_TEST) -run "^\QTestUpgrade\E$$" -tags e2e.upgrade -timeout 180m -v -args \
-cosmovisor=$(COSMOVISOR) \
-workdir=$(AP_RUN_DIR)/validators \
-config=test-config.json \
Expand Down

0 comments on commit b853ca7

Please sign in to comment.