tests(e2e): increase CI for sampling test (#19519)

based on experiment in https://gist.github.com/sushi30/3083e96c9081371fa55e55b0847b96d2
This commit is contained in:
Imri Paran 2025-01-27 10:31:43 +01:00 committed by GitHub
parent 5482b94a57
commit 41b1ec081d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"""