Skip to content

Commit

Permalink
Clarify v2 API testing for podman vs docker clients
Browse files Browse the repository at this point in the history
Fixes: containers#13273

Signed-off-by: Chris Evich <cevich@redhat.com>
  • Loading branch information
cevich authored and Keon Chen committed Mar 18, 2022
1 parent 18b018b commit 0c8f641
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions contrib/cirrus/runner.sh
Expand Up @@ -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() {
Expand Down Expand Up @@ -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() {
Expand Down

0 comments on commit 0c8f641

Please sign in to comment.