diff --git a/scripts/ci/e2e_benchmark.py b/scripts/ci/e2e_benchmark.py index f7763769d..de5c43b53 100644 --- a/scripts/ci/e2e_benchmark.py +++ b/scripts/ci/e2e_benchmark.py @@ -79,7 +79,7 @@ class BenchmarkRunner: def calculate_confidence_interval(data): print('Data: ', data.shape) - assert len(data) == 5 + assert len(data) == 5, f"Shape: {data.shape}" mean = np.mean(data) std_err = np.std(data, ddof=1) / np.sqrt(len(data)) h = std_err * 1.96 # 95% confidence interval