From ccfec28bcdcbad1593d8904c7c00f6423dc71e0a Mon Sep 17 00:00:00 2001 From: hcooper Date: Tue, 23 Jan 2024 00:09:32 -0800 Subject: [PATCH] Switch from "docker-compose" to "docker compose" "docker compose" is the modern usage. --- tests_integration/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests_integration/run.py b/tests_integration/run.py index 3fbadd9..8714ecd 100644 --- a/tests_integration/run.py +++ b/tests_integration/run.py @@ -35,9 +35,9 @@ if __name__ == "__main__": for target in targets: print(f"Running integration tests against {target}...") - os.system(f"docker-compose -f tests_integration/docker-compose-{target}.yml down -v") + os.system(f"docker compose -f tests_integration/docker-compose-{target}.yml down -v") if ( - os.system(f"docker-compose -f tests_integration/docker-compose-{target}.yml up --abort-on-container-exit") + os.system(f"docker compose -f tests_integration/docker-compose-{target}.yml up --abort-on-container-exit") > 0 ): print(f"Integration tests against {target} failed!")