From 7d67e7acb687beb3f99dcdcaabb9867c63fde4ef Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 13 Sep 2021 09:20:41 +0100 Subject: [PATCH] Some comments and explaination --- test/test_wheel_tag.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test_wheel_tag.py b/test/test_wheel_tag.py index 123a3355..b42cb8f2 100644 --- a/test/test_wheel_tag.py +++ b/test/test_wheel_tag.py @@ -5,9 +5,10 @@ from . import test_projects, utils basic_project = test_projects.new_c_project() -def test(tmp_path): +def test_wheel_tag_is_correct_when_using_macosx_deployment_target(tmp_path): if utils.platform != "macos": - pytest.skip() + pytest.skip('This test is only relevant to MACOSX_DEPLOYMENT_TARGET') + project_dir = tmp_path / "project" basic_project.generate(project_dir)