We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 898f02c commit f6ce8d2Copy full SHA for f6ce8d2
tests/parallax-cli-checks.bats
@@ -87,14 +87,20 @@ load helpers.bash
87
pull alpine:latest
88
[ "$status" -eq 0 ]
89
90
- # Now migration should pass
+ run "$PODMAN_BINARY" \
91
+ --root "$PODMAN_ROOT" \
92
+ --runroot "$PODMAN_RUNROOT" \
93
+ pull ubuntu:latest
94
+ [ "$status" -eq 0 ]
95
+
96
+ # Now migration should pass check, and also complete a ubuntu migration
97
run "$PARALLAX_BINARY" \
98
--podmanRoot "$PODMAN_ROOT" \
99
--roStoragePath "$RO_STORAGE" \
100
--mksquashfsPath "$MKSQUASHFS_PATH" \
101
--log-level info \
102
--migrate \
- --image alpine:latest
103
+ --image ubuntu:latest
104
105
106
[[ "$output" =~ "Migration successfully completed" ]]
0 commit comments