From 308b3b12b53b252a82ff25df2536adc204bea60e Mon Sep 17 00:00:00 2001 From: Matthew Tang Date: Wed, 17 Jun 2026 16:19:01 -0700 Subject: [PATCH] chore: Suppress warnings in pytest to prevent JUnit XML too large error. PiperOrigin-RevId: 933981482 --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index f9e853be4d..1014d02616 100644 --- a/noxfile.py +++ b/noxfile.py @@ -220,9 +220,9 @@ def default(session): "auto", # Use all available CPU cores "--quiet", "--durations=50", - # Suppress redundant deprecation warnings to reduce JUnit XML size. + # Suppress all warnings to reduce JUnit XML size. "-W", - "ignore:You are using a Python version (3.10.19):FutureWarning", + "ignore", # Disable capturing stdout/stderr for passed tests to reduce XML bloat. "-o", "junit_log_passing_tests=False",