From 9ef339f487725d542a17040f1c5515ac9111c862 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Fri, 7 Jun 2019 16:21:13 -0500 Subject: [PATCH] WIP: debug CI --- ci/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_tests.sh b/ci/run_tests.sh index ee46da9f52eab..3c0c5c34f5e4f 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -45,7 +45,7 @@ do NUM_JOBS=2 fi - PYTEST_CMD="pytest -m \"$TYPE_PATTERN$PATTERN\" -n $NUM_JOBS -s --strict --durations=10 --junitxml=test-data-$TYPE.xml $TEST_ARGS $COVERAGE pandas" + PYTEST_CMD="pytest -m \"$TYPE_PATTERN$PATTERN\" -n $NUM_JOBS -s -v --strict --durations=10 --junitxml=test-data-$TYPE.xml $TEST_ARGS $COVERAGE pandas" echo $PYTEST_CMD # 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 sh -c "$PYTEST_CMD; ret=\$?; [ \$ret = 5 ] && exit 0 || exit \$ret"