Closed aparcar closed 1 year ago
@aparcar A new socket was used to ensure the tests did not impact a podman environment already running on the system. Things like delete all containers could really ruin someone's day.
If you set PODMAN_LOG_LEVEL to DEBUG
before running the tests, then podman will hopeful log information about why it is not opening the socket the tests expect.
re: self.log_level = os.environ.get("PODMAN_LOG_LEVEL", "INFO")
I'm trying to use the unit tests however when I run them in a virtual env the setup tries to run
podman system service
which isn't available (anymore?). I think it's superseded bysystemctl --user start podman.socket
.This seems to be hardcoded in the setup, maybe it could use
CONTAINER_HOST
env variable if available, instead of starting a new socket?