From 3d0e2841b8bd8cf58b59cb19752d8441fff17f4e Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Thu, 18 Sep 2025 08:37:36 -0700 Subject: [PATCH] ci.eval.compare: keep warnings as warnings rather than raising them as errors This reverts commit f8210561f3d3 (ci.eval.compare: turn warnings into errors, 2025-09-16). It turns out that there are normal math warnings and we don't want to block CI on the math coming out wrong. --- ci/eval/compare/cmp-stats.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/eval/compare/cmp-stats.py b/ci/eval/compare/cmp-stats.py index cc34376ae381..a9fda2512f9f 100644 --- a/ci/eval/compare/cmp-stats.py +++ b/ci/eval/compare/cmp-stats.py @@ -3,7 +3,6 @@ import json import numpy as np import os import pandas as pd -import warnings from dataclasses import asdict, dataclass from pathlib import Path @@ -304,9 +303,6 @@ def main(): options = parser.parse_args() - # Turn warnings into errors - warnings.simplefilter("error") - before_stats = Path(options.before) after_stats = Path(options.after)