From 21ba7d43d62f66f1acdda09df1a3b12b974bf3eb Mon Sep 17 00:00:00 2001 From: James Falcon Date: Thu, 22 Feb 2024 15:16:20 -0600 Subject: [PATCH] test: allow downgrades when install debs (#4941) --- tests/integration_tests/instances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/instances.py b/tests/integration_tests/instances.py index 21345f4674e..1b09cba1273 100644 --- a/tests/integration_tests/instances.py +++ b/tests/integration_tests/instances.py @@ -221,7 +221,7 @@ def install_deb(self): self.execute("apt update") # Use apt install instead of dpkg -i to pull in any changed pkg deps assert self.execute( - "apt install {path} --yes".format(path=remote_path) + f"apt install {remote_path} --yes --allow-downgrades" ).ok @retry(tries=30, delay=1)