Skip to content
Closed
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
24 changes: 12 additions & 12 deletions ci/scripts/python_wheel_windows_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ set ARROW_TEST_DATA=C:\arrow\testing\data
set PARQUET_TEST_DATA=C:\arrow\submodules\parquet-testing\data

@REM Install testing dependencies
pip install -r C:\arrow\python\requirements-wheel-test.txt || exit /B
pip install -r C:\arrow\python\requirements-wheel-test.txt || exit /B 1

@REM Install the built wheels
python -m pip install --no-index --find-links=C:\arrow\python\dist\ pyarrow || exit /B
python -m pip install --no-index --find-links=C:\arrow\python\dist\ pyarrow || exit /B 1

@REM Test that the modules are importable
python -c "import pyarrow" || exit /B
python -c "import pyarrow._hdfs" || exit /B
python -c "import pyarrow._s3fs" || exit /B
python -c "import pyarrow.csv" || exit /B
python -c "import pyarrow.dataset" || exit /B
python -c "import pyarrow.flight" || exit /B
python -c "import pyarrow.fs" || exit /B
python -c "import pyarrow.json" || exit /B
python -c "import pyarrow.parquet" || exit /B
python -c "import pyarrow" || exit /B 1
python -c "import pyarrow._hdfs" || exit /B 1
python -c "import pyarrow._s3fs" || exit /B 1
python -c "import pyarrow.csv" || exit /B 1
python -c "import pyarrow.dataset" || exit /B 1
python -c "import pyarrow.flight" || exit /B 1
python -c "import pyarrow.fs" || exit /B 1
python -c "import pyarrow.json" || exit /B 1
python -c "import pyarrow.parquet" || exit /B 1

@REM Execute unittest
pytest -r s --pyargs pyarrow || exit /B
pytest -r s --pyargs pyarrow || exit /B 1
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would probably also have worked:

Suggested change
pytest -r s --pyargs pyarrow || exit /B 1
pytest -r s --pyargs pyarrow