Skip to content

Commit

Permalink
Update testsuite/forge-cli/src/suites/realistic_environment.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Balaji Arun <[email protected]>
  • Loading branch information
danielxiangzl and ibalajiarun authored Dec 20, 2024
1 parent c03f2c2 commit cc7eeb5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions testsuite/forge-cli/src/suites/realistic_environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ pub(crate) fn realistic_env_sweep_wrap(
.with_validator_override_node_config_fn(Arc::new(|config, _| {
}))
.add_network_test(test)
.with_validator_resource_override(NodeResourceOverride {
cpu_cores: Some(60),
memory_gib: Some(200),
storage_gib: Some(500), // assuming we're using these large marchines for long-running or expensive tests which need more disk
})
.with_fullnode_resource_override(NodeResourceOverride {
cpu_cores: Some(60),
memory_gib: Some(200),
storage_gib: Some(500),
})
// Test inherits the main EmitJobRequest, so update here for more precise latency measurements
.with_emit_job(
EmitJobRequest::default().latency_polling_interval(Duration::from_millis(100)),
Expand Down

0 comments on commit cc7eeb5

Please sign in to comment.