From 20739388cd5a82b4435992f878916009173dc97c Mon Sep 17 00:00:00 2001 From: Mathias Fussenegger Date: Tue, 30 Sep 2025 13:07:11 +0200 Subject: [PATCH] Add back 6.0 branch to bwc tests to cover backports pre-release Was removed in https://github.com/crate/crate-qa/pull/358 --- tests/bwc/test_recovery.py | 3 ++- tests/bwc/test_rolling_upgrade.py | 3 ++- tests/bwc/test_upgrade.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/bwc/test_recovery.py b/tests/bwc/test_recovery.py index cea19d1f..43900d05 100644 --- a/tests/bwc/test_recovery.py +++ b/tests/bwc/test_recovery.py @@ -26,7 +26,8 @@ UpgradePath('5.8.x', '5.9.x'), UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), - UpgradePath('6.0.x', 'latest-nightly') + UpgradePath('6.0.x', '6.0'), + UpgradePath('6.0', 'latest-nightly') ] UPGRADE_PATHS_FROM_43 = [UpgradePath('4.3.x', '4.4.x')] diff --git a/tests/bwc/test_rolling_upgrade.py b/tests/bwc/test_rolling_upgrade.py index 5d65a56d..35ed1c27 100644 --- a/tests/bwc/test_rolling_upgrade.py +++ b/tests/bwc/test_rolling_upgrade.py @@ -41,7 +41,8 @@ UpgradePath('5.8.x', '5.9.x'), UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), - UpgradePath('6.0.x', 'latest-nightly'), + UpgradePath('6.0.x', '6.0'), + UpgradePath('6.0', 'latest-nightly'), ) diff --git a/tests/bwc/test_upgrade.py b/tests/bwc/test_upgrade.py index c5e087b2..b78686e7 100644 --- a/tests/bwc/test_upgrade.py +++ b/tests/bwc/test_upgrade.py @@ -59,6 +59,7 @@ VersionDef('5.9.x', []), VersionDef('5.10.x', []), VersionDef('6.0.x', []), + VersionDef('6.0', []), VersionDef('latest-nightly', []) ) )