Skip to content

Commit bed964f

Browse files
committed
faulthanlder
1 parent 14d21af commit bed964f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/run_tests.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ fi
2828

2929
# just debugging
3030

31+
pip install pytest-faulthandler
3132
pytest --collect-only -m single pandas
3233

3334
if [ -n "$PATTERN" ]; then
@@ -48,7 +49,7 @@ do
4849
NUM_JOBS=2
4950
fi
5051

51-
PYTEST_CMD="pytest -m \"$TYPE_PATTERN$PATTERN\" -n $NUM_JOBS -s -v --strict --durations=10 --junitxml=test-data-$TYPE.xml $TEST_ARGS $COVERAGE pandas"
52+
PYTEST_CMD="pytest -m \"$TYPE_PATTERN$PATTERN\" -n $NUM_JOBS -s --strict --durations=10 --junitxml=test-data-$TYPE.xml $TEST_ARGS $COVERAGE pandas"
5253
echo $PYTEST_CMD
5354
# if no tests are found (the case of "single and slow"), pytest exits with code 5, and would make the script fail, if not for the below code
5455
sh -c "$PYTEST_CMD; ret=\$?; [ \$ret = 5 ] && exit 0 || exit \$ret"

0 commit comments

Comments
 (0)