diff --git a/test/scripts/gh-actions/run-e2e-tests.sh b/test/scripts/gh-actions/run-e2e-tests.sh index e3d460fb9f0..31951cd4686 100755 --- a/test/scripts/gh-actions/run-e2e-tests.sh +++ b/test/scripts/gh-actions/run-e2e-tests.sh @@ -30,5 +30,10 @@ fi PARALLELISM="${2:-1}" source python/kserve/.venv/bin/activate pushd test/e2e >/dev/null - pytest -m "$1" --ignore=qpext --log-cli-level=INFO -n $PARALLELISM --dist worksteal + echo "**** collect ****" + pytest --collect-only + echo "***** TEST ****" + pytest -vvv -m "$1" --ignore=qpext --log-cli-level=DEBUG -n $PARALLELISM --dist worksteal + sleep 30m popd +echo "DONE!"