diff --git a/tests/test_base.py b/tests/test_base.py index fac76473..dc7ed3dd 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -75,10 +75,10 @@ def test_base_size(auto_container: ContainerData, container_runtime): } elif OS_VERSION in ("basalt", "tumbleweed"): base_container_max_size: Dict[str, int] = { - "x86_64": 120, - "aarch64": 140, - "ppc64le": 172, - "s390x": 115, + "x86_64": 106, + "aarch64": 130, + "ppc64le": 142, + "s390x": 113, } # 15.5/15.6 are hopefully only temporary large due to PED-5014 elif OS_VERSION in ("15.6",): diff --git a/tests/test_minimal.py b/tests/test_minimal.py index a7421f93..3a3e131b 100644 --- a/tests/test_minimal.py +++ b/tests/test_minimal.py @@ -19,10 +19,10 @@ } TW_MINIMAL_IMAGE_MAX_SIZE: Dict[str, int] = { - "x86_64": 51, - "aarch64": 51, - "s390x": 49, - "ppc64le": 59, + "aarch64": 65, + "ppc64le": 58, + "s390x": 41, + "x86_64": 49, } #: size limits of the micro image per architecture in MiB @@ -35,8 +35,8 @@ TW_MICRO_IMAGE_MAX_SIZE: Dict[str, int] = { "x86_64": 34, - "aarch64": 36, - "s390x": 34, + "aarch64": 42, + "s390x": 28, "ppc64le": 41, }