From ddfcf69c5f61933a4224b744970039ae2b7e0b12 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Mon, 28 Feb 2022 12:46:03 -0500 Subject: [PATCH] Clarify v2 API testing for podman vs docker clients Fixes: #13273 Signed-off-by: Chris Evich --- contrib/cirrus/runner.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index 6376bafa2697..10191283ce12 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -55,7 +55,9 @@ function _run_unit() { } function _run_apiv2() { - make localapiv2 |& logformatter + if ! make localapiv2 |& logformatter + die "Testing of API was performed using the podman client" + fi } function _run_compose() { @@ -97,7 +99,9 @@ function _run_bindings() { function _run_docker-py() { source venv/bin/activate - make run-docker-py-tests + if ! make run-docker-py-tests; then + die "Testing of API was performed using the docker client" + fi } function _run_endpoint() {