Skip to content

Commit b6bd075

Browse files
authored
fix parquet tests (#1988)
1 parent 6f825f3 commit b6bd075

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fsspec/tests/test_parquet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
# Define `engine` fixture
2424
FASTPARQUET_MARK = pytest.mark.skipif(
25-
pd_gt_3 or not fastparquet, reason="fastparquet not found"
25+
pd_gt_3 or fastparquet is None, reason="fastparquet not found or new pandas"
2626
)
27-
PYARROW_MARK = pytest.mark.skipif(not pq, reason="pyarrow not found")
27+
PYARROW_MARK = pytest.mark.skipif(pq is None, reason="pyarrow not found")
2828

2929

3030
@pytest.fixture(

0 commit comments

Comments
 (0)