Skip to content

Commit

Permalink
Merge pull request #2597 from input-output-hk/move_to_unstable
Browse files Browse the repository at this point in the history
[Tests] Move soak tests and legacy connection tests to unstable
  • Loading branch information
dkijania committed Oct 13, 2020
2 parents 68ce9b3 + 7ea5a1b commit c62e796
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,31 +265,31 @@ fn scenarios_repository() -> Vec<Scenario> {
repository.push(Scenario::new(
legacy::last_nth_release_title(5),
|ctx| legacy::last_nth_release(ctx, 5),
vec![Tag::Short],
vec![Tag::Short, Tag::Unstable],
));

repository.push(Scenario::new(
legacy::last_nth_release_title(4),
|ctx| legacy::last_nth_release(ctx, 4),
vec![Tag::Short],
vec![Tag::Short, Tag::Unstable],
));

repository.push(Scenario::new(
legacy::last_nth_release_title(3),
|ctx| legacy::last_nth_release(ctx, 3),
vec![Tag::Short],
vec![Tag::Short, Tag::Unstable],
));

repository.push(Scenario::new(
legacy::last_nth_release_title(2),
|ctx| legacy::last_nth_release(ctx, 2),
vec![Tag::Short],
vec![Tag::Short, Tag::Unstable],
));

repository.push(Scenario::new(
legacy::last_nth_release_title(1),
|ctx| legacy::last_nth_release(ctx, 1),
vec![Tag::Short],
vec![Tag::Short, Tag::Unstable],
));

repository.push(Scenario::new(
Expand Down
4 changes: 2 additions & 2 deletions testing/jormungandr-scenario-tests/src/test/network/real.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ fn prepare_real_scenario(

pub fn real_network(context: Context<ChaChaRng>) -> Result<ScenarioResult> {
let relay_nodes_count = 3;
let leaders_per_relay = 10;
let legacies_per_relay = 1;
let leaders_per_relay = 11;
let legacies_per_relay = 0;

let scenario_settings = prepare_real_scenario(
"Real-Network",
Expand Down

0 comments on commit c62e796

Please sign in to comment.