Skip to content

Commit 1a8ee39

Browse files
committed
Update sizings for micro image
1 parent ffa7fb3 commit 1a8ee39

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

tests/test_minimal.py

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,23 @@ def test_micro_image_size(container, container_runtime):
7070

7171
if OS_VERSION in ("tumbleweed",):
7272
size: Dict[str, int] = {
73-
"x86_64": 34,
74-
"aarch64": 42,
73+
"x86_64": 30,
74+
"aarch64": 38,
7575
"s390x": 28,
76-
"ppc64le": 41,
76+
"ppc64le": 42,
77+
}
78+
elif OS_VERSION in ("16.0",):
79+
size: Dict[str, int] = {
80+
"x86_64": 30,
81+
"aarch64": 38,
82+
"s390x": 28,
83+
"ppc64le": 42,
7784
}
7885
else:
79-
size = {
80-
"x86_64": 26,
86+
size: Dict[str, int] = {
87+
"x86_64": 25,
8188
"aarch64": 28,
82-
"s390x": 26,
89+
"s390x": 25,
8390
"ppc64le": 33,
8491
}
8592

0 commit comments

Comments
 (0)