Skip to content

Commit

Permalink
ARROW-2076: [Python] Display slowest test durations
Browse files Browse the repository at this point in the history
Author: Antoine Pitrou <antoine@python.org>

Closes #1541 from pitrou/slowest-test-durations and squashes the following commits:

cf5e9c8 [Antoine Pitrou] [Python] Display slowest test durations
  • Loading branch information
pitrou authored and xhochy committed Feb 1, 2018
1 parent 0ada875 commit c1d77a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/msvc-build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ pushd python

set PYARROW_CXXFLAGS=/WX
python setup.py build_ext --inplace --with-parquet --bundle-arrow-cpp bdist_wheel || exit /B
py.test pyarrow -v -s --parquet || exit /B
py.test pyarrow -r sxX --durations=15 -v -s --parquet || exit /B

popd
2 changes: 1 addition & 1 deletion ci/travis_script_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if [ $TRAVIS_OS_NAME == "linux" ]; then
fi

PYARROW_PATH=$CONDA_PREFIX/lib/python$PYTHON_VERSION/site-packages/pyarrow
python -m pytest -vv -r sxX -s $PYARROW_PATH --parquet
python -m pytest -vv -r sxX --durations=15 -s $PYARROW_PATH --parquet

if [ "$PYTHON_VERSION" == "3.6" ] && [ $TRAVIS_OS_NAME == "linux" ]; then
# Build documentation once
Expand Down

0 comments on commit c1d77a1

Please sign in to comment.