From 02cb4794dc20028260b4086649c3f0c461edaee9 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Mon, 2 Dec 2024 20:06:20 +0000 Subject: [PATCH] [ci] Update the test playbooks to ignore errors in tests (#178) The tests should be run with ignore_errors: true in order to run all the tests. Without this, the tests will only run until the first failing test. This change is inline with the way the other test roles are included --- ci/run_autoscaling_osp18.yml | 1 + ci/run_verify_metrics_osp18.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/run_autoscaling_osp18.yml b/ci/run_autoscaling_osp18.yml index 42498be1..135c8b8c 100644 --- a/ci/run_autoscaling_osp18.yml +++ b/ci/run_autoscaling_osp18.yml @@ -77,6 +77,7 @@ - name: "Run Telemetry Autoscaling tests" ansible.builtin.import_role: name: telemetry_autoscaling + ignore_errors: true always: - name: Revert the version update diff --git a/ci/run_verify_metrics_osp18.yml b/ci/run_verify_metrics_osp18.yml index 5143c444..4d69fa65 100644 --- a/ci/run_verify_metrics_osp18.yml +++ b/ci/run_verify_metrics_osp18.yml @@ -26,3 +26,4 @@ - name: "Run Telemetry Verify Metrics tests" ansible.builtin.import_role: name: telemetry_verify_metrics + ignore_errors: true