From 30cc833a4fdab2b9628a08171ed75d564fcb0aa5 Mon Sep 17 00:00:00 2001 From: Mika Date: Fri, 20 Feb 2026 11:16:31 +0000 Subject: [PATCH] Add rollup_rollout/tests/data/test_ci_result.json --- rollup_rollout/tests/data/test_ci_result.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 rollup_rollout/tests/data/test_ci_result.json diff --git a/rollup_rollout/tests/data/test_ci_result.json b/rollup_rollout/tests/data/test_ci_result.json new file mode 100644 index 0000000..1213d7b --- /dev/null +++ b/rollup_rollout/tests/data/test_ci_result.json @@ -0,0 +1,26 @@ +[ + { + "policy_hash": "abc123def456", + "outcome": "PASS", + "unknown_rate": 0.0, + "top_reasons": "[]" + }, + { + "policy_hash": "abc123def789", + "outcome": "FAIL", + "unknown_rate": 0.15, + "top_reasons": "['Timeout', 'NetworkError']" + }, + { + "policy_hash": "xyz987ghi654", + "outcome": "WARN", + "unknown_rate": 0.05, + "top_reasons": "['MinorFlake', 'ResourceLimit']" + }, + { + "policy_hash": "xyz987ghi321", + "outcome": "PASS", + "unknown_rate": 0.02, + "top_reasons": "['FlakyTest']" + } +] \ No newline at end of file