From f77774058470f376a149e48a58578128454a73bc Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Fri, 11 Nov 2022 09:21:54 +0100 Subject: [PATCH] TST: debug --- tests/test_tags.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_tags.py b/tests/test_tags.py index 4cf8b6f81..89b06d14d 100644 --- a/tests/test_tags.py +++ b/tests/test_tags.py @@ -48,7 +48,6 @@ def test_tag_platlib_wheel(monkeypatch): assert str(builder.tag) == f'{INTERPRETER}-{ABI}-{PLATFORM}' -@pytest.mark.skipif(not ABI3SUFFIX, reason='Stable ABI not supported by Python interpreter') def test_tag_stable_abi(monkeypatch): builder = wheel_builder_test_factory(monkeypatch, { 'platlib': [f'extension{ABI3SUFFIX}'], @@ -56,7 +55,6 @@ def test_tag_stable_abi(monkeypatch): assert str(builder.tag) == f'{INTERPRETER}-abi3-{PLATFORM}' -@pytest.mark.skipif(not ABI3SUFFIX, reason='Stable ABI not supported by Python interpreter') def test_tag_mixed_abi(monkeypatch): builder = wheel_builder_test_factory(monkeypatch, { 'platlib': [f'extension{ABI3SUFFIX}', f'another{SUFFIX}'],