# HG changeset patch # User Alain Mazy # Date 1705652157 -3600 # Node ID 58384ae69f4175b0a69922cc3555a7a6d475854e # Parent f3475c3e42e5f0ac5fce83b72bce08a45c4ae781 added docker pull to avoid timeout diff -r f3475c3e42e5 -r 58384ae69f41 NewTests/PostgresUpgrades/test_pg_upgrades.py --- a/NewTests/PostgresUpgrades/test_pg_upgrades.py Thu Jan 18 17:46:54 2024 +0100 +++ b/NewTests/PostgresUpgrades/test_pg_upgrades.py Fri Jan 19 09:15:57 2024 +0100 @@ -54,6 +54,9 @@ def test_upgrades_downgrades_with_pg_15(self): + print("Pullling container") + subprocess.run(["docker", "compose", "pull"], check=True) + print("Launching PG-15 server") subprocess.run(["docker", "compose", "up", "pg-15", "-d"], check=True) wait_container_healthy("pg-15")