Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ci/appveyor-cpp-setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ mamba update -q -y -c conda-forge --all || exit /B
@rem Create conda environment
@rem

@rem Workaround for ARROW-17172
@rem This seems necessary for test_cython.py to succeed, otherwise
@rem the extension module being built would fail loading in a subprocess.
set CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1
set CONDA_PACKAGES=

if "%ARROW_BUILD_GANDIVA%" == "ON" (
Expand Down
2 changes: 0 additions & 2 deletions python/pyarrow/tests/test_cython.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ def check_cython_example_module(mod):
mod.cast_scalar(scal, pa.list_(pa.int64()))


@pytest.mark.skipif(sys.platform == "win32",
reason="ARROW-17172: currently fails on windows")
@pytest.mark.cython
def test_cython_api(tmpdir):
"""
Expand Down