From daa926bf0bce7c4fd7a3275d5bb072c22794a215 Mon Sep 17 00:00:00 2001 From: Shobhit Singh Date: Thu, 22 May 2025 14:01:15 -0700 Subject: [PATCH] test: ignore `bigframes/testing` folder from testing This is to disable failures like the following: _____________ ERROR collecting bigframes/testing/polars_session.py _____________ bigframes/testing/polars_session.py:19: in import polars E ModuleNotFoundError: No module named 'polars' --- noxfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/noxfile.py b/noxfile.py index 5c20487ccd..3ee087a404 100644 --- a/noxfile.py +++ b/noxfile.py @@ -424,6 +424,8 @@ def doctest(session: nox.sessions.Session): "third_party/bigframes_vendored/ibis", "--ignore", "bigframes/core/compile/polars", + "--ignore", + "bigframes/testing", ), test_folder="bigframes", check_cov=True,