diff options
author | Jhon Honce <jhonce@redhat.com> | 2022-03-02 09:50:48 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2022-03-04 10:35:29 -0700 |
commit | dca2e7924ba5346eb78a3b7091d15b316e4e925a (patch) | |
tree | 011b4aaee36bc4b0e505ee1dc5e9edd6fc9d35f2 /test/apiv2/12-imagesMore.at | |
parent | ed59b89a43c6d9f0bf691e536738fb8450bedfa9 (diff) | |
download | podman-dca2e7924ba5346eb78a3b7091d15b316e4e925a.tar.gz podman-dca2e7924ba5346eb78a3b7091d15b316e4e925a.tar.bz2 podman-dca2e7924ba5346eb78a3b7091d15b316e4e925a.zip |
Move all python tests to pytest
* Add configuration to add report header for python client used in tests
* Move report headers into the individual test runners vs runner.sh
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'test/apiv2/12-imagesMore.at')
-rw-r--r-- | test/apiv2/12-imagesMore.at | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/apiv2/12-imagesMore.at b/test/apiv2/12-imagesMore.at index 96eba1db5..67b4f1c79 100644 --- a/test/apiv2/12-imagesMore.at +++ b/test/apiv2/12-imagesMore.at @@ -26,7 +26,8 @@ t GET libpod/images/$IMAGE/json 200 \ .RepoTags[1]=localhost:5000/myrepo:mytag # Run registry container -podman run -d --name registry -p 5000:5000 quay.io/libpod/registry:2.6 /entrypoint.sh /etc/docker/registry/config.yml +# FIXME this fails if python tests have been run first... +podman run -d --name registry -p 5000:5000 quay.io/libpod/registry:2.7 /entrypoint.sh /etc/docker/registry/config.yml wait_for_port localhost 5000 # Push to local registry and check output @@ -58,7 +59,7 @@ t DELETE libpod/containers/registry?force=true 200 # Remove images t DELETE libpod/images/$IMAGE 200 \ .ExitCode=0 -t DELETE libpod/images/quay.io/libpod/registry:2.6 200 \ +t DELETE libpod/images/quay.io/libpod/registry:2.7 200 \ .ExitCode=0 if [ -z "${GOT_DIGEST}" ] ; then |