We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b578d commit 8a203a6Copy full SHA for 8a203a6
pandas/tests/io/test_orc.py
@@ -5,15 +5,12 @@
5
import numpy as np
6
import pytest
7
8
-from pandas.compat import is_platform_windows
9
-
10
import pandas as pd
11
from pandas import read_orc
12
import pandas.util.testing as tm
13
14
pytest.importorskip("pyarrow", minversion="0.13.0")
15
16
-pytestmark = pytest.mark.skipif(is_platform_windows(), "skipping on windows")
+pytest.importorskip("pyarrow.orc")
17
18
pytestmark = pytest.mark.filterwarnings(
19
"ignore:RangeIndex.* is deprecated:DeprecationWarning"
0 commit comments