diff --git a/python/run_test.sh b/python/run_test.sh deleted file mode 100755 index 47e93e15a203b..0000000000000 --- a/python/run_test.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env bash -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -set -e - -export CXXFLAGS="" -export ARROW_BUILD_TYPE=debug -export ARROW_BUILD_TOOLCHAIN=$CONDA_PREFIX -export PARQUET_BUILD_TOOLCHAIN=$CONDA_PREFIX -export ARROW_HOME=$CONDA_PREFIX -export PARQUET_HOME=$CONDA_PREFIX -export PARQUET_TEST_DATA=`pwd`/../cpp/submodules/parquet-testing/data -export ARROW_TEST_DATA=`pwd`/../testing/data - - -mkdir -p ../cpp/build -pushd ../cpp/build - -cmake -GNinja \ - -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \ - -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \ - -DARROW_PYTHON=ON \ - -DARROW_PLASMA=OFF \ - -DARROW_PARQUET=ON \ - -DARROW_GANDIVA=OFF \ - -DARROW_ORC=ON \ - -DARROW_FLIGHT=OFF \ - -DARROW_S3=ON \ - -DARROW_TENSORFLOW=OFF \ - -DARROW_DEPENDENCY_SOURCE=CONDA \ - -DARROW_EXTRA_ERROR_CONTEXT=ON \ - -DARROW_BUILD_TESTS=ON \ - -DCMAKE_EXPORT_COMPILE_COMMANDS=YES \ - -DCMAKE_CXX_FLAGS=$CXXFLAGS \ - .. - -ninja -# ninja test -ninja install - -popd - -export PYARROW_CMAKE_GENERATOR=Ninja -export PYARROW_BUILD_TYPE=$ARROW_BUILD_TYPE -export PYARROW_WITH_PARQUET=1 -export PYARROW_WITH_PLASMA=0 -export PYARROW_WITH_GANDIVA=0 -export PYARROW_WITH_DATASET=0 -export PYARROW_WITH_FLIGHT=0 -export PYARROW_WITH_S3=1 -export PYARROW_WITH_ORC=1 - -python setup.py develop - -py.test -sv "$@" diff --git a/python/test.parquet b/python/test.parquet deleted file mode 100644 index 8548b7e899f35..0000000000000 Binary files a/python/test.parquet and /dev/null differ