From 7a18783bd538147273d58d1f75c117dd18b3086c Mon Sep 17 00:00:00 2001 From: Dane Pitkin Date: Wed, 23 Aug 2023 09:51:37 -0400 Subject: [PATCH] Ignore substrait warning --- python/pyarrow/tests/test_substrait.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/pyarrow/tests/test_substrait.py b/python/pyarrow/tests/test_substrait.py index be35a21a02411..60f5ff052c311 100644 --- a/python/pyarrow/tests/test_substrait.py +++ b/python/pyarrow/tests/test_substrait.py @@ -240,6 +240,10 @@ def table_provider(names, schema): assert res_tb == test_table_1 +# TODO GH-37235 Properly handle the following warning: +# "PytestUnraisableExceptionWarning: Exception ignored in: +# 'pyarrow._substrait._create_named_table_provider'" +@pytest.mark.filterwarnings("ignore:Exception ignored") def test_named_table_invalid_table_name(): test_table_1 = pa.Table.from_pydict({"x": [1, 2, 3]})