From 41b1ec081d674b97c2f6e143c55d6817c36302a3 Mon Sep 17 00:00:00 2001 From: Imri Paran Date: Mon, 27 Jan 2025 10:31:43 +0100 Subject: [PATCH] tests(e2e): increase CI for sampling test (#19519) based on experiment in https://gist.github.com/sushi30/3083e96c9081371fa55e55b0847b96d2 --- .../tests/integration/test_suite/test_e2e_workflow.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ingestion/tests/integration/test_suite/test_e2e_workflow.py b/ingestion/tests/integration/test_suite/test_e2e_workflow.py index 131b4de5848..81e47ff1f0d 100644 --- a/ingestion/tests/integration/test_suite/test_e2e_workflow.py +++ b/ingestion/tests/integration/test_suite/test_e2e_workflow.py @@ -363,7 +363,12 @@ class TestE2EWorkflow(unittest.TestCase): assert data_test_case_result_1[0]["testCaseStatus"] == "Success" assert data_test_case_result_2 assert data_test_case_result_2[0]["testCaseStatus"] == "Success" - self.assertAlmostEqual(data_test_case_result_2[0]["passedRows"], 15, delta=5) + self.assertAlmostEqual( + data_test_case_result_2[0]["passedRows"], + 15, + delta=8, + msg="This is a 99% confidence interval. Run the test again to validate failure.", + ) def test_e2e_cli_partitioned_workflow(self): """test cli workflow e2e"""