diff --git a/hack/ci/runner.sh b/hack/ci/runner.sh index 789e670df9..ba3c44f643 100755 --- a/hack/ci/runner.sh +++ b/hack/ci/runner.sh @@ -186,9 +186,11 @@ function run_apiv2() { pip install --upgrade pip pip install --requirement ./test/apiv2/python/requirements.txt $SUDO sh -c "( - make localapiv2-bash + rc=0 + make localapiv2-bash || rc=\$? source .venv/requests/bin/activate - make localapiv2-python + make localapiv2-python || rc=\$? + exit \$rc )" |& logformatter }