We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba789d commit 1e7393eCopy full SHA for 1e7393e
.github/workflows/python.yml
@@ -188,6 +188,10 @@ jobs:
188
python -m pip install \
189
-r python/requirements-build.txt \
190
-r python/requirements-test.txt
191
+ - name: Install MinIO
192
+ run: |
193
+ $(brew --prefix bash)/bin/bash \
194
+ ci/scripts/install_minio.sh latest ${ARROW_HOME}
195
- name: Setup ccache
196
shell: bash
197
run: ci/scripts/ccache_setup.sh
ci/scripts/python_test.sh
@@ -69,4 +69,4 @@ export PYARROW_TEST_PARQUET_ENCRYPTION
69
export PYARROW_TEST_S3
70
71
# Testing PyArrow
72
-pytest -r s ${PYTEST_ARGS} --pyargs pyarrow
+pytest -r s -vs --pyargs pyarrow.tests.test_fs
0 commit comments