Skip to content

Commit 6044ea0

Browse files
committed
tests: Narrow pandas not installed skip to duckdb.InvalidInputException
1 parent fd26187 commit 6044ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def pytest_runtest_call(item):
6464
if sys.version_info[:2] == (3, 14):
6565
try:
6666
outcome.get_result()
67-
except Exception as e:
67+
except duckdb.InvalidInputException as e:
6868
if "'pandas' is required for this operation but it was not installed" in str(e):
6969
pytest.skip("pandas not available - test requires pandas functionality")
7070
else:

0 commit comments

Comments
 (0)