You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2022/02/24 09:28:54 UTC

[arrow] branch master updated: ARROW-15770: [CI] Not all python tests are running on CI jobs

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

westonpace 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 094c5ba  ARROW-15770: [CI] Not all python tests are running on CI jobs
094c5ba is described below

commit 094c5ba186cddd69d4aa83de5ed2b62d4ed07081
Author: Weston Pace <we...@gmail.com>
AuthorDate: Wed Feb 23 23:26:19 2022 -1000

    ARROW-15770: [CI] Not all python tests are running on CI jobs
    
    Closes #12500 from westonpace/bugfix/ARROW-15770--pytest-only-testing-orc
    
    Authored-by: Weston Pace <we...@gmail.com>
    Signed-off-by: Weston Pace <we...@gmail.com>
---
 .github/workflows/python.yml      | 3 +++
 ci/docker/conda-python.dockerfile | 3 ++-
 ci/scripts/python_test.sh         | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index cda42c5..beb10c6 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -120,12 +120,15 @@ jobs:
     env:
       ARROW_HOME: /usr/local
       ARROW_DATASET: ON
+      ARROW_FLIGHT: ON
       ARROW_GANDIVA: ON
+      ARROW_HDFS: ON
       ARROW_JEMALLOC: ON
       ARROW_ORC: ON
       ARROW_PARQUET: ON
       ARROW_PLASMA: ON
       ARROW_PYTHON: ON
+      ARROW_S3: ON
       ARROW_WITH_ZLIB: ON
       ARROW_WITH_LZ4: ON
       ARROW_WITH_BZ2: ON
diff --git a/ci/docker/conda-python.dockerfile b/ci/docker/conda-python.dockerfile
index c2d3783..b594929 100644
--- a/ci/docker/conda-python.dockerfile
+++ b/ci/docker/conda-python.dockerfile
@@ -41,4 +41,5 @@ ENV ARROW_PYTHON=ON \
     ARROW_BUILD_TESTS=OFF \
     ARROW_BUILD_UTILITIES=OFF \
     ARROW_TENSORFLOW=ON \
-    ARROW_USE_GLOG=OFF
+    ARROW_USE_GLOG=OFF \
+    ARROW_HDFS=ON
diff --git a/ci/scripts/python_test.sh b/ci/scripts/python_test.sh
index c7df729..e1d06c1 100755
--- a/ci/scripts/python_test.sh
+++ b/ci/scripts/python_test.sh
@@ -52,4 +52,4 @@ export PYARROW_TEST_ORC
 export PYARROW_TEST_PARQUET
 export PYARROW_TEST_S3
 
-pytest -r s -v ${PYTEST_ARGS} --pyargs pyarrow.tests.test_orc
+pytest -r s -v ${PYTEST_ARGS} --pyargs pyarrow