From 5e48f9fae3241ab15995bf07170be0f63c9626e4 Mon Sep 17 00:00:00 2001 From: Alenka Frim Date: Mon, 17 Oct 2022 12:25:12 +0200 Subject: [PATCH] ARROW-18074: [CI] Running ctest for PyArrow C++ not needed anymore (#14435) As https://github.com/apache/arrow/pull/14117 is merged separate run of `ctest` for `PyArrow C++` tests is not needed anymore and is removed in this PR. Authored-by: Alenka Frim Signed-off-by: Antoine Pitrou --- ci/scripts/python_test.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ci/scripts/python_test.sh b/ci/scripts/python_test.sh index a18bc5b9133ed..824865b923f15 100755 --- a/ci/scripts/python_test.sh +++ b/ci/scripts/python_test.sh @@ -55,14 +55,5 @@ export PYARROW_TEST_ORC export PYARROW_TEST_PARQUET export PYARROW_TEST_S3 -# Testing PyArrow C++ -if [ "${ARROW_BUILD_TESTS}" == "ON" ]; then - pushd ${test_dir} - ctest \ - --output-on-failure \ - --parallel ${n_jobs} \ - --timeout 300 - popd -fi # Testing PyArrow pytest -r s ${PYTEST_ARGS} --pyargs pyarrow