You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2022/04/25 15:28:26 UTC

[arrow] branch master updated: ARROW-16314: [Python][CI] Skip running cython tests in windows verification builds

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 52698f3579 ARROW-16314: [Python][CI] Skip running cython tests in windows verification builds
52698f3579 is described below

commit 52698f35799522925d3ad84a9324db7dc6e6ba60
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Mon Apr 25 17:28:19 2022 +0200

    ARROW-16314: [Python][CI] Skip running cython tests in windows verification builds
    
    Created a follow-up to investigate it further: https://issues.apache.org/jira/browse/ARROW-16315
    
    Closes #12985 from kszucs/disable-cython-win
    
    Authored-by: Krisztián Szűcs <sz...@gmail.com>
    Signed-off-by: Krisztián Szűcs <sz...@gmail.com>
---
 dev/release/verify-release-candidate-wheels.bat | 2 ++
 dev/release/verify-release-candidate.bat        | 1 +
 2 files changed, 3 insertions(+)

diff --git a/dev/release/verify-release-candidate-wheels.bat b/dev/release/verify-release-candidate-wheels.bat
index 6ee6a298f1..d21c412fc7 100644
--- a/dev/release/verify-release-candidate-wheels.bat
+++ b/dev/release/verify-release-candidate-wheels.bat
@@ -101,6 +101,8 @@ python -c "import pyarrow.flight" || EXIT /B 1
 python -c "import pyarrow.dataset" || EXIT /B 1
 
 pip install -r arrow\python\requirements-test.txt || EXIT /B 1
+
+set PYARROW_TEST_CYTHON=OFF
 pytest %CONDA_ENV_PATH%\Lib\site-packages\pyarrow --pdb -v || EXIT /B 1
 
 :done
diff --git a/dev/release/verify-release-candidate.bat b/dev/release/verify-release-candidate.bat
index 4460d20a29..d627094589 100644
--- a/dev/release/verify-release-candidate.bat
+++ b/dev/release/verify-release-candidate.bat
@@ -135,6 +135,7 @@ set PYARROW_WITH_FLIGHT=1
 set PYARROW_WITH_PARQUET=1
 set PYARROW_WITH_PARQUET_ENCRYPTION=1
 set PYARROW_WITH_DATASET=1
+set PYARROW_TEST_CYTHON=OFF
 python setup.py build_ext --inplace --bundle-arrow-cpp bdist_wheel || exit /B 1
 pytest pyarrow -v -s --enable-parquet || exit /B 1