Skip to content

Commit 70d21da

Browse files
Revert "Remove 6.1.x from upgrade paths"
This reverts commit 8376ce9.
1 parent 8376ce9 commit 70d21da

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

tests/bwc/test_hotfix_downgrades.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ def _run_downgrades(self, node):
5252
xs = [row[0] for row in c.fetchall()]
5353
self.assertEqual(xs, [10])
5454

55+
@unittest.skip("""
56+
This is expected to fail as 6.1.1 can't downgrade
57+
to 6.1.0 which had an issue with oid serialization.
58+
""")
5559
def test_can_downgrade_latest_testing_within_hotfix_versions(self):
5660
cluster = self._new_cluster('latest-testing', 2)
5761
cluster.start()
@@ -62,10 +66,6 @@ def test_can_downgrade_latest_testing_within_hotfix_versions(self):
6266
self._run_downgrades(node)
6367
cluster.stop()
6468

65-
@unittest.skip("""
66-
This is expected to fail until CrateDB v6.1.1 is out
67-
as 6.1.0 has issues with oid serialization.
68-
""")
6969
def test_can_downgrade_unreleased_testing_branch_within_hotfix_versions(self):
7070
versions = fetch_versions()
7171
version = versions["testing"]["version"]

tests/bwc/test_rolling_upgrade.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
UpgradePath('5.9.x', '5.10.x'),
4646
UpgradePath('5.10.x', '6.0.x'),
4747
UpgradePath('6.0.x', '6.0'),
48-
UpgradePath('6.0', '6.1'),
48+
UpgradePath('6.0', '6.1.x'),
49+
UpgradePath('6.1.x', '6.1'),
4950
UpgradePath('6.1', 'latest-nightly'),
5051
)
5152

tests/bwc/test_upgrade.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
VersionDef('5.10.x', []),
6161
VersionDef('6.0.x', []),
6262
VersionDef('6.0', []),
63+
VersionDef('6.1.x', []),
6364
VersionDef('6.1', []),
6465
VersionDef('latest-nightly', [])
6566
)

0 commit comments

Comments
 (0)