We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f825f3 commit b6bd075Copy full SHA for b6bd075
fsspec/tests/test_parquet.py
@@ -22,9 +22,9 @@
22
23
# Define `engine` fixture
24
FASTPARQUET_MARK = pytest.mark.skipif(
25
- pd_gt_3 or not fastparquet, reason="fastparquet not found"
+ pd_gt_3 or fastparquet is None, reason="fastparquet not found or new pandas"
26
)
27
-PYARROW_MARK = pytest.mark.skipif(not pq, reason="pyarrow not found")
+PYARROW_MARK = pytest.mark.skipif(pq is None, reason="pyarrow not found")
28
29
30
@pytest.fixture(
0 commit comments