From ae5fd645762b498795b43595bbdd5163cef1c2b9 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Sun, 27 Nov 2022 21:16:46 +0000 Subject: [PATCH] integration-test.py: try docker first --- .github/integration-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/integration-test.py b/.github/integration-test.py index 73ea6d7..c6aec7f 100755 --- a/.github/integration-test.py +++ b/.github/integration-test.py @@ -7,7 +7,7 @@ import os def container_runtime(): - runtimes = ["podman", "docker"] + runtimes = ["docker", "podman"] for runtime in runtimes: if which(runtime): return runtime