From a18768f3251bf2ff80e93d4d1a0aae40c4bd22ae Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Fri, 11 Oct 2024 17:50:29 -0300 Subject: [PATCH] Push consensus file to take it form the repo --- consensus-test.yaml | 32 ++++++++++++++++++++++++++++++++ network_params.yaml | 4 +++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 consensus-test.yaml diff --git a/consensus-test.yaml b/consensus-test.yaml new file mode 100644 index 000000000..9d1f40348 --- /dev/null +++ b/consensus-test.yaml @@ -0,0 +1,32 @@ +id: stability-check +name: "Check chain stability" +timeout: 2h +tasks: +- name: check_clients_are_healthy + title: "Check if all clients are ready" + timeout: 5m + config: + minClientCount: 3 + +- name: run_tasks_concurrent + title: "Check chain stability" + timeout: 1h + config: + tasks: + - name: check_consensus_finality + title: "Check consensus chain finality" + config: + minFinalizedEpochs: 2 + maxUnfinalizedEpochs: 3 + - name: check_consensus_attestation_stats + title: "Check consensus attestation stats" + config: + minTargetPercent: 98 + minHeadPercent: 80 + - name: check_consensus_reorgs + title: "Check consensus reorgs" + config: + maxReorgsPerEpoch: 2 + minCheckEpochCount: 1 + - name: check_consensus_forks + title: "Check consensus forks" \ No newline at end of file diff --git a/network_params.yaml b/network_params.yaml index 9527a096f..741e816e1 100644 --- a/network_params.yaml +++ b/network_params.yaml @@ -22,5 +22,7 @@ additional_services: - beacon_metrics_gazer - prometheus_grafana assertoor_params: - run_stability_check: true + run_stability_check: false run_block_proposal_check: false + tests: + - file: "./consensus-test.yaml"