Skip to content

Commit 8b0ebe2

Browse files
committed
Add 6.x to bwc upgrade paths
1 parent d59a8c1 commit 8b0ebe2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

tests/bwc/test_recovery.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
UpgradePath('5.6.x', '5.7.x'),
2525
UpgradePath('5.7.x', '5.8.x'),
2626
UpgradePath('5.8.x', '5.9.x'),
27-
UpgradePath('5.9.x', 'latest-nightly')
27+
UpgradePath('5.9.x', '5.10.x'),
28+
UpgradePath('5.10.x', '6.0.x'),
29+
UpgradePath('6.0.x', 'latest-nightly')
2830
]
2931
UPGRADE_PATHS_FROM_43 = [UpgradePath('4.3.x', '4.4.x')]
3032

tests/bwc/test_rolling_upgrade.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
UpgradePath('5.7.x', '5.8.x'),
4141
UpgradePath('5.8.x', '5.9.x'),
4242
UpgradePath('5.9.x', '5.10.x'),
43-
UpgradePath('5.10.x', '5.10'),
44-
UpgradePath('5.10', 'latest-nightly'),
43+
UpgradePath('5.10.x', '6.0.x'),
44+
UpgradePath('6.0.x', 'latest-nightly'),
4545
)
4646

4747

tests/bwc/test_upgrade.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
VersionDef('5.8.x', []),
5959
VersionDef('5.9.x', []),
6060
VersionDef('5.10.x', []),
61-
VersionDef('5.10', []),
61+
VersionDef('6.0.x', []),
6262
VersionDef('latest-nightly', [])
6363
)
6464
)
@@ -160,7 +160,7 @@ def run_selects(c, version):
160160

161161
def get_test_paths():
162162
"""
163-
Generater for all possible upgrade paths that should be tested.
163+
Generator for all possible upgrade paths that should be tested.
164164
"""
165165
for path in UPGRADE_PATHS:
166166
for versions in (path[x:] for x in range(len(path) - 1)):

0 commit comments

Comments
 (0)