Skip to content

Commit

Permalink
Default value to 120
Browse files Browse the repository at this point in the history
  • Loading branch information
cecton committed Jul 24, 2020
1 parent f173c1c commit 8e45871
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ default:
interruptible: true
tags:
- linux-docker
variables:
SUBSTRATE_TEST_TIMEOUT: 600

.build-only: &build-only
only:
Expand Down Expand Up @@ -224,6 +226,7 @@ test-linux-stable: &test-linux
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
RUST_BACKTRACE: 1
WASM_BUILD_NO_COLOR: 1
SUBSTRATE_TEST_TIMEOUT: 600
except:
variables:
- $DEPLOY_TAG
Expand Down
2 changes: 1 addition & 1 deletion test-utils/derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn parse_knobs(
std::env::var("SUBSTRATE_TEST_TIMEOUT")
.ok()
.and_then(|x| x.parse().ok())
.unwrap_or(600))
.unwrap_or(120))
).fuse();
let actual_test_task = async move {
#body
Expand Down

0 comments on commit 8e45871

Please sign in to comment.