integration-test.py: try docker first

This commit is contained in:
Simon Li
2022-11-27 21:16:46 +00:00
committed by Pris Nasrat
parent 05d46e1d9b
commit ae5fd64576

View File

@@ -7,7 +7,7 @@ import os
def container_runtime():
runtimes = ["podman", "docker"]
runtimes = ["docker", "podman"]
for runtime in runtimes:
if which(runtime):
return runtime