Skip to content

Commit ad76d5b

Browse files
committed
skip tests on windows
1 parent 2ce4edb commit ad76d5b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/io/test_orc.py

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import numpy as np
77
import pytest
88

9+
from pandas.compat import is_platform_windows
10+
911
import pandas as pd
1012
import pandas.util.testing as tm
1113

@@ -50,6 +52,8 @@ def engine(request):
5052
def pa():
5153
if not _HAVE_PYARROW:
5254
pytest.skip("pyarrow is not installed")
55+
if is_platform_windows():
56+
pytest.skip("pyarrow orc not available by default on windows")
5357
return "pyarrow"
5458

5559

0 commit comments

Comments
 (0)