diff --git a/test/test_ios.py b/test/test_ios.py index f727db568..04f9d141a 100644 --- a/test/test_ios.py +++ b/test/test_ios.py @@ -230,6 +230,7 @@ def test_no_xbuild_tool_definition(tmp_path, capfd): project_dir, add_env={ "CIBW_PLATFORM": "ios", + "CIBW_BUILD": "cp313-*", "CIBW_TEST_SKIP": "*", }, ) @@ -239,7 +240,7 @@ def test_no_xbuild_tool_definition(tmp_path, capfd): "spam", "0.1.0", platform="ios", - python_abi_tags=["cp313-cp313", "cp314-cp314"], + python_abi_tags=["cp313-cp313"], ) assert set(actual_wheels) == set(expected_wheels) @@ -263,13 +264,14 @@ def test_empty_xbuild_tool_definition(tmp_path, capfd): project_dir, add_env={ "CIBW_PLATFORM": "ios", + "CIBW_BUILD": "cp313-*", "CIBW_TEST_SKIP": "*", "CIBW_XBUILD_TOOLS": "", }, ) expected_wheels = utils.expected_wheels( - "spam", "0.1.0", platform="ios", python_abi_tags=["cp313-cp313", "cp314-cp314"] + "spam", "0.1.0", platform="ios", python_abi_tags=["cp313-cp313"] ) assert set(actual_wheels) == set(expected_wheels) @@ -299,6 +301,7 @@ def test_spam(): project_dir, add_env={ "CIBW_PLATFORM": "ios", + "CIBW_BUILD": "cp313-*", "CIBW_TEST_COMMAND": "pytest ./tests", "CIBW_TEST_SOURCES": "tests", "CIBW_TEST_REQUIRES": "pytest", @@ -307,7 +310,7 @@ def test_spam(): ) expected_wheels = utils.expected_wheels( - "spam", "0.1.0", platform="ios", python_abi_tags=["cp313-cp313", "cp314-cp314"] + "spam", "0.1.0", platform="ios", python_abi_tags=["cp313-cp313"] ) assert set(actual_wheels) == set(expected_wheels)