Skip to content

Commit

Permalink
timeout_minutes is now configurable via env-variable in run_e2e_test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
fixxxedpoint committed Dec 4, 2023
1 parent 30c333a commit 6cec47d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/run_e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fi
if [[ -n "${OUT_LATENCY:-}" ]]; then
ARGS+=(-e OUT_LATENCY)
fi
timeout_duration="45m"
timeout_duration="${TIMEOUT_MINUTES:-15m}"
echo "Running test, logs will be shown when tests finishes or after ${timeout_duration} timeout."
# a hack to set global timeout on a e2e testcase run
# we can't do that on GH yaml level due to https://github.com/actions/runner/issues/1979
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly-normal-session-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ jobs:
env:
NETWORK: "synthetic-network"
NODE_URL: "ws://Node0:9944"
TIMEOUT_MINUTES: "60m"
with:
test-case: test::sync::large_finalization_stall
image-path: aleph-release-synthetic-docker
Expand Down

0 comments on commit 6cec47d

Please sign in to comment.