mirror of
https://github.com/containers/podman.git
synced 2025-06-17 23:20:59 +08:00

Adds test to validate podman image endpoints. Adds readme on how to run python tests Adds contants file. Signed-off-by: Sujil02 <sushah@redhat.com>
7 lines
125 B
Python
7 lines
125 B
Python
import docker
|
|
from docker import Client
|
|
|
|
|
|
def get_client():
|
|
return docker.Client(base_url="unix:/run/podman/podman.sock")
|