This is an automated email from the ASF dual-hosted git repository. wesm 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 3f38bd4 ARROW-5727: [Python] [CI] Install pytest-faulthandler before running tests 3f38bd4 is described below commit 3f38bd4751a17766682eacc4775176acf09e703e Author: Antoine Pitrou <anto...@python.org> AuthorDate: Tue Jun 25 19:29:39 2019 -0500 ARROW-5727: [Python] [CI] Install pytest-faulthandler before running tests Author: Antoine Pitrou <anto...@python.org> Closes #4692 from pitrou/ARROW-5727-pytest-faulthandler and squashes the following commits: 8f024105d <Antoine Pitrou> ARROW-5727: Install pytest-faulthandler before running tests --- ci/conda_env_python.yml | 1 + python/manylinux1/scripts/build_virtualenvs.sh | 2 +- python/manylinux2010/scripts/build_virtualenvs.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/conda_env_python.yml b/ci/conda_env_python.yml index 5cbf80d..b2b68b8 100644 --- a/ci/conda_env_python.yml +++ b/ci/conda_env_python.yml @@ -21,5 +21,6 @@ hypothesis numpy>=1.14 pandas pytest +pytest-faulthandler setuptools setuptools_scm=3.2.0 diff --git a/python/manylinux1/scripts/build_virtualenvs.sh b/python/manylinux1/scripts/build_virtualenvs.sh index beaf133..4ae4b66 100755 --- a/python/manylinux1/scripts/build_virtualenvs.sh +++ b/python/manylinux1/scripts/build_virtualenvs.sh @@ -47,7 +47,7 @@ for PYTHON_TUPLE in ${PYTHON_VERSIONS}; do echo "=== (${PYTHON}, ${U_WIDTH}) Preparing virtualenv for tests ===" "$(cpython_path $PYTHON ${U_WIDTH})/bin/virtualenv" -p ${PYTHON_INTERPRETER} --no-download /venv-test-${PYTHON}-${U_WIDTH} source /venv-test-${PYTHON}-${U_WIDTH}/bin/activate - pip install pytest hypothesis 'numpy==1.14.5' 'pandas==0.24.0' + pip install pytest pytest-faulthandler hypothesis 'numpy==1.14.5' 'pandas==0.24.0' deactivate done diff --git a/python/manylinux2010/scripts/build_virtualenvs.sh b/python/manylinux2010/scripts/build_virtualenvs.sh index 67ec961..1e8b11e 100755 --- a/python/manylinux2010/scripts/build_virtualenvs.sh +++ b/python/manylinux2010/scripts/build_virtualenvs.sh @@ -47,7 +47,7 @@ for PYTHON_TUPLE in ${PYTHON_VERSIONS}; do echo "=== (${PYTHON}, ${U_WIDTH}) Preparing virtualenv for tests ===" "$(cpython_path $PYTHON ${U_WIDTH})/bin/virtualenv" -p ${PYTHON_INTERPRETER} --no-download /venv-test-${PYTHON}-${U_WIDTH} source /venv-test-${PYTHON}-${U_WIDTH}/bin/activate - pip install pytest hypothesis "numpy==1.14.*" "pandas==0.24.0" + pip install pytest pytest-faulthandler hypothesis "numpy==1.14.*" "pandas==0.24.0" deactivate done