diff --git a/tests/build_image_base_test.py b/tests/build_image_base_test.py index b55eeb3..92c31c4 100644 --- a/tests/build_image_base_test.py +++ b/tests/build_image_base_test.py @@ -159,8 +159,11 @@ def test_external_apps(self): self.assertTrue(out.decode().find("Build Succeeded")) def test_containerized_build(self): - if self.runtime in SKIP_CONTAINERIZED_BUILD_TESTS: - self.skipTest(f"Skipping for {self.runtime}") + # Skip this test for now as these checks are failing for x86 + # TODO: Add the checks back once the below docker issue is fixed + # Error: 500 Server Error for : Internal Server Error ("failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: unable to apply cgroup configuration: cannot enter cgroupv2 "/sys/fs/cgroup/docker" with domain controllers -- it is in threaded mode: unknown") + # if self.runtime in SKIP_CONTAINERIZED_BUILD_TESTS: + self.skipTest(f"Skipping for {self.runtime}") init_args = [ "sam", "init",