mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-11 11:25:45 +00: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>
6 lines
125 B
Python
6 lines
125 B
Python
import docker
|
|
from docker import Client
|
|
|
|
|
|
def get_client():
|
|
return docker.Client(base_url="unix:/run/podman/podman.sock")
|