Skip to content

Commit 6c35985

Browse files
committed
test: Mark test xfail
1 parent 8b11bc4 commit 6c35985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/fast/numpy/test_numpy_new_path.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
Therefore, we only test the new codes and exec paths.
33
"""
44

5+
import sys
56
import numpy as np
67
import duckdb
78
from datetime import timedelta
89
import pytest
9-
import pandas # https://github.com/duckdb/duckdb-python/issues/48
1010

1111

1212
class TestScanNumpy(object):
13+
@pytest.mark.skipif(sys.version_info[:2] == (3, 14), reason="Fails when testing without pandas https://github.com/duckdb/duckdb-python/issues/48")
1314
def test_scan_numpy(self, duckdb_cursor):
1415
z = np.array([1, 2, 3])
1516
res = duckdb_cursor.sql("select * from z").fetchall()

0 commit comments

Comments
 (0)