Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Align to changes in Substrate
  • Loading branch information
koute committed Mar 25, 2022
commit 3b11c11f6f4c96e324a34cd424f51cb958dfdc71
1 change: 1 addition & 0 deletions node/test/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ pub fn node_config(
announce_block: true,
base_path: Some(base_path),
informant_output_format: Default::default(),
disable_hardware_benchmarks: true,
}
}

Expand Down
2 changes: 2 additions & 0 deletions tests/purge_chain_works.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ async fn purge_chain_rocksdb_works() {
.arg(tmpdir.path())
.arg("--port")
.arg("33034")
.arg("--disable-hardware-benchmarks")
.spawn()
.unwrap();

Expand Down Expand Up @@ -78,6 +79,7 @@ async fn purge_chain_paritydb_works() {
.arg(tmpdir.path())
.arg("--database")
.arg("paritydb-experimental")
.arg("--disable-hardware-benchmarks")
.spawn()
.unwrap();

Expand Down
1 change: 1 addition & 0 deletions tests/running_the_node_and_interrupt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ async fn running_the_node_works_and_can_be_interrupted() {
let mut cmd = Command::new(cargo_bin("polkadot"))
.args(&["--dev", "-d"])
.arg(tmpdir.path())
.arg("--disable-hardware-benchmarks")
.spawn()
.unwrap();

Expand Down