Skip to content

Commit

Permalink
add timer
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
jerabekjiri committed Aug 25, 2024
1 parent 21f2a4b commit fdf95de
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions galaxy_ng/tests/integration/api/rbac_actions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,20 @@ 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({
"username": username,
"password": password,
})
create_local_image_container(_ansible_config("admin"), gc, container, tag)

end = time.time()
print('elapsed time ', end - start)
return 0


Expand Down

0 comments on commit fdf95de

Please sign in to comment.