Skip to content

Commit e4c0cab

Browse files
committed
test: remove arm64 test
1 parent dfb0f11 commit e4c0cab

2 files changed

Lines changed: 5 additions & 12 deletions

File tree

tests/integration/buildcmd/test_build_cmd.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,13 +1916,12 @@ def _verify_build_succeeds(self, build_dir):
19161916

19171917
@skipIf(SKIP_DOCKER_TESTS, SKIP_DOCKER_MESSAGE)
19181918
@parameterized_class(
1919-
("cached", "parallel", "use_custom_build_dir", "architecture"),
1919+
("cached", "parallel", "use_custom_build_dir"),
19201920
[
1921-
(False, False, False, "x86_64"), # Basic
1922-
(True, False, False, "x86_64"), # With Caching
1923-
(False, True, False, "x86_64"), # With parallelism
1924-
(False, False, True, "x86_64"), # With custom build dir
1925-
(False, False, False, "arm64"), # ARM64
1921+
(False, False, False), # Basic
1922+
(True, False, False), # With Caching
1923+
(False, True, False), # With parallelism
1924+
(False, False, True), # With custom build dir
19261925
],
19271926
)
19281927
@pytest.mark.filterwarnings("ignore::ResourceWarning")
@@ -1948,7 +1947,6 @@ def test_build_image_function_with_buildkit(self):
19481947
"Handler": "main.handler",
19491948
"DockerFile": "Dockerfile",
19501949
"Tag": tag,
1951-
"Architectures": self.architecture,
19521950
}
19531951
cmdlist = self.get_command_list(
19541952
parameter_overrides=overrides,

tests/integration/testdata/buildcmd/template_image.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ Parameters:
1010
Type: String
1111
Tag:
1212
Type: String
13-
Architectures:
14-
Type: String
15-
Default: x86_64
1613

1714
Resources:
1815

@@ -24,8 +21,6 @@ Resources:
2421
Command:
2522
- !Ref Handler
2623
Timeout: 600
27-
Architectures:
28-
- !Ref Architectures
2924
Metadata:
3025
DockerTag: !Ref Tag
3126
DockerContext: ./PythonImage

0 commit comments

Comments
 (0)