summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/cirrus/runner.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh
index 6376bafa2..3aa69183e 100755
--- a/contrib/cirrus/runner.sh
+++ b/contrib/cirrus/runner.sh
@@ -55,7 +55,11 @@ function _run_unit() {
}
function _run_apiv2() {
- make localapiv2 |& logformatter
+ local m="Testing of API was performed using the **PODMAN*** client"
+ warn "$m"
+ if ! make localapiv2 |& logformatter; then
+ die "$m"
+ fi
}
function _run_compose() {
@@ -96,8 +100,12 @@ function _run_bindings() {
}
function _run_docker-py() {
+ m="Testing of API was performed using the **DOCKER** client"
+ warn "$m"
source venv/bin/activate
- make run-docker-py-tests
+ if ! make run-docker-py-tests; then
+ die "$m"
+ fi
}
function _run_endpoint() {