diff --git a/galaxy_ng/tests/integration/api/rbac_actions/utils.py b/galaxy_ng/tests/integration/api/rbac_actions/utils.py index eca4e6b15d..4427848b2d 100644 --- a/galaxy_ng/tests/integration/api/rbac_actions/utils.py +++ b/galaxy_ng/tests/integration/api/rbac_actions/utils.py @@ -150,6 +150,10 @@ def ensure_test_container_is_pulled(): def podman_push(username, password, container, tag="latest"): + print('-------------------PODMAN PUSH-----------------------') + start = time.time() + print("test started ", start) + _ansible_config = get_ansible_config() _galaxy_client = get_galaxy_client(_ansible_config) gc = _galaxy_client({ @@ -157,6 +161,9 @@ def podman_push(username, password, container, tag="latest"): "password": password, }) create_local_image_container(_ansible_config("admin"), gc, container, tag) + + end = time.time() + print('elapsed time ', end - start) return 0