Skip to content

Commit 39b578d

Browse files
committed
actually skip on windows
1 parent ebaec28 commit 39b578d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/user_guide/io.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4868,7 +4868,7 @@ ORC
48684868

48694869
Similar to the :ref:`parquet <io.parquet>` format, the `ORC Format <//https://orc.apache.org/>`__ is a binary columnar serialization
48704870
for data frames. It is designed to make reading data frames efficient. Pandas provides *only* a reader for the
4871-
ORC format, :func:`~pandas.read_orc`. This requires the ``pyarrow <https://arrow.apache.org/docs/python/>`__ library.
4871+
ORC format, :func:`~pandas.read_orc`. This requires the `pyarrow <https://arrow.apache.org/docs/python/>`__ library.
48724872

48734873
.. _io.sql:
48744874

pandas/tests/io/test_orc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
pytest.importorskip("pyarrow", minversion="0.13.0")
1515

16-
pytestmark = pytest.mark.skipif(is_platform_windows, "skipping on windows")
16+
pytestmark = pytest.mark.skipif(is_platform_windows(), "skipping on windows")
1717

1818
pytestmark = pytest.mark.filterwarnings(
1919
"ignore:RangeIndex.* is deprecated:DeprecationWarning"

0 commit comments

Comments
 (0)