# HG changeset patch # User Alain Mazy # Date 1707302612 -3600 # Node ID 3bb4b25890300c697cc55297ff274473e89aecfe # Parent 75dbc81d0e263c45b0cd1ce31eb84150e4557d94 fix PG test upgrades diff -r 75dbc81d0e26 -r 3bb4b2589030 NewTests/PostgresUpgrades/docker-entrypoint-integ-tests.sh diff -r 75dbc81d0e26 -r 3bb4b2589030 NewTests/PostgresUpgrades/downgrade.sh diff -r 75dbc81d0e26 -r 3bb4b2589030 NewTests/PostgresUpgrades/run-integ-tests-from-docker.sh diff -r 75dbc81d0e26 -r 3bb4b2589030 NewTests/PostgresUpgrades/test_pg_upgrades.py --- a/NewTests/PostgresUpgrades/test_pg_upgrades.py Wed Feb 07 09:32:39 2024 +0100 +++ b/NewTests/PostgresUpgrades/test_pg_upgrades.py Wed Feb 07 11:43:32 2024 +0100 @@ -116,12 +116,11 @@ subprocess.run(["docker", "compose", "stop", "orthanc-pg-15-under-tests"], check=True) time.sleep(2) - print("Downgrading Orthanc DB to v6.1") + print("Downgrading Orthanc DB to Rev1") subprocess.run(["docker", "exec", "pg-15", "./scripts/downgrade.sh"], check=True) time.sleep(2) - print("Downgrading Orthanc DB to v6.1") - print("Launching previous Orthanc (DB v6.1)") + print("Launching previous Orthanc (DB Rev1)") subprocess.run(["docker", "compose", "up", "orthanc-pg-15-61", "-d"], check=True) o = OrthancApiClient("http://localhost:8052") diff -r 75dbc81d0e26 -r 3bb4b2589030 NewTests/PostgresUpgrades/wait-for-it.sh