Skip to content

Commit 9fbd6e4

Browse files
committed
chore(test): skip a few tests until python 3.14 build image is released
1 parent dfb9f43 commit 9fbd6e4

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

tests/integration/buildcmd/test_build_cmd_arm64.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def test_with_default_requirements_invoke_in_container(self, runtime, codeuri, u
5858
[
5959
("python3.12", "Python", "use_container"),
6060
("python3.13", "Python", "use_container"),
61-
("python3.14", "Python", "use_container"),
61+
# skip this test until python 3.14 build image is released
62+
# ("python3.14", "Python", "use_container"),
6263
],
6364
name_func=show_container_in_test_name,
6465
)

tests/integration/buildcmd/test_build_cmd_python.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ def test_with_default_requirements_in_container(self, runtime):
365365
[
366366
("python3.12",),
367367
("python3.13",),
368-
("python3.14",),
368+
# skip this test until the python 3.14 build image is released
369+
# ("python3.14",),
369370
]
370371
)
371372
@pytest.mark.al2023
@@ -495,7 +496,8 @@ def test_with_default_requirements(self, runtime, codeuri, use_container, archit
495496
("python3.13", "Python", "use_container", "x86_64"),
496497
("python3.14", "Python", False, "x86_64"),
497498
("python3.14", "PythonPEP600", False, "x86_64"),
498-
("python3.14", "Python", "use_container", "x86_64"),
499+
# skip this test until python 3.14 build image is released
500+
# ("python3.14", "Python", "use_container", "x86_64"),
499501
],
500502
name_func=show_container_in_test_name,
501503
)

0 commit comments

Comments
 (0)