diff --git a/tests/bwc/test_recovery.py b/tests/bwc/test_recovery.py index 43900d05..2d9b7f7c 100644 --- a/tests/bwc/test_recovery.py +++ b/tests/bwc/test_recovery.py @@ -27,7 +27,9 @@ UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), UpgradePath('6.0.x', '6.0'), - UpgradePath('6.0', 'latest-nightly') + UpgradePath('6.0', '6.1.x'), + UpgradePath('6.1.x', '6.1'), + UpgradePath('6.1', '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 5bbbf569..bb60c5d7 100644 --- a/tests/bwc/test_rolling_upgrade.py +++ b/tests/bwc/test_rolling_upgrade.py @@ -45,7 +45,9 @@ UpgradePath('5.9.x', '5.10.x'), UpgradePath('5.10.x', '6.0.x'), UpgradePath('6.0.x', '6.0'), - UpgradePath('6.0', 'latest-nightly'), + UpgradePath('6.0', '6.1.x'), + UpgradePath('6.1.x', '6.1'), + UpgradePath('6.1', 'latest-nightly'), ) diff --git a/tests/bwc/test_upgrade.py b/tests/bwc/test_upgrade.py index b78686e7..56a21d6e 100644 --- a/tests/bwc/test_upgrade.py +++ b/tests/bwc/test_upgrade.py @@ -60,6 +60,8 @@ VersionDef('5.10.x', []), VersionDef('6.0.x', []), VersionDef('6.0', []), + VersionDef('6.1.x', []), + VersionDef('6.1', []), VersionDef('latest-nightly', []) ) )