Skip to content

Add try-runtime feature to CI #602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ pipeline {
SKIP_WASM_BUILD=1 cargo check
SKIP_WASM_BUILD=1 cargo check --features private-net,ready-to-test
SKIP_WASM_BUILD=1 cargo check --features private-net,ready-to-test,wip
cargo test
cargo test --features try-runtime
cargo test --features \"private-net wip ready-to-test runtime-benchmarks\"
'''
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/tests/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::env::var;
async fn run_migrations() {
sp_tracing::try_init_simple();
let transport: Transport = var("WS")
.unwrap_or("wss://ws.mof.sora.org".to_string())
.unwrap_or("wss://ws.framenode-0.a1.sora2.soramitsu.co.jp:443".to_string())
.into();
let maybe_state_snapshot: Option<SnapshotConfig> = var("SNAP").map(|s| s.into()).ok();
let mut ext = Builder::<Block>::default()
Expand Down
4 changes: 2 additions & 2 deletions runtime/src/tests/xor_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ fn referrer_gets_bonus_from_tx_fee() {

#[test]
fn notify_val_burned_works() {
env_logger::Builder::new()
let _ = env_logger::Builder::new()
.filter_level(LevelFilter::Debug)
.init();
.try_init();

ext().execute_with(|| {
set_weight_to_fee_multiplier(1);
Expand Down