From de0086e6e8f3890ccde6c2fc80d9d48b7cef5e1e Mon Sep 17 00:00:00 2001 From: Jorrit Sandbrink Date: Sun, 1 Dec 2024 13:12:05 +0400 Subject: [PATCH] disable pyiceberg info logs for tests --- tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index 6088fa976c..a5a349f8d9 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -120,6 +120,9 @@ def _create_pipeline_instance_id(self) -> str: # disable googleapiclient logging logging.getLogger("googleapiclient.discovery_cache").setLevel("WARNING") + # disable pyiceberg logging + logging.getLogger("pyiceberg").setLevel("WARNING") + # reset and init airflow db import warnings