Skip to content

Commit 8d7a35b

Browse files
Update integration test comments
1 parent 49b2111 commit 8d7a35b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/integration/high_availability/test_upgrade_rollback_incompat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def test_build_and_deploy(ops_test: OpsTest, charm) -> None:
4141
with snap_revisions.open("r") as file:
4242
old_revisions: dict = json.load(file)
4343
new_revisions = old_revisions.copy()
44-
# TODO: support arm64
44+
# TODO: support arm64 & s390x
4545
new_revisions["x86_64"] = "69"
4646
with snap_revisions.open("w") as file:
4747
json.dump(new_revisions, file)
@@ -155,7 +155,7 @@ async def test_rollback(ops_test, charm, continuous_writes) -> None:
155155
with snap_revisions.open("r") as file:
156156
old_revisions: dict = json.load(file)
157157
new_revisions = old_revisions.copy()
158-
# TODO: mark as amd64 only or support arm64
158+
# TODO: support arm64 & s390x
159159
new_revisions["x86_64"] = "69"
160160
with snap_revisions.open("w") as file:
161161
json.dump(new_revisions, file)

tests/integration/test_architecture.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,5 @@ async def test_amd_charm_on_arm_host(ops_test: OpsTest) -> None:
4747
status="error",
4848
raise_on_error=False,
4949
)
50+
51+
# TODO: add s390x test

0 commit comments

Comments
 (0)