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: #13273

Signed-off-by: Chris Evich <cevich@redhat.com>
  • Loading branch information
cevich committed Feb 28, 2022
1 parent c39dffe commit cff45fe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions contrib/cirrus/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ function _run_unit() {
}

function _run_apiv2() {
make localapiv2 |& logformatter
if ! make localapiv2 |& logformatter; then
die "Testing of API was performed using the podman client"
fi
}

function _run_compose() {
Expand Down Expand Up @@ -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() {
Expand Down

0 comments on commit cff45fe

Please sign in to comment.