Skip to content

Commit f777740

Browse files
committed
TST: debug
1 parent 9532aa8 commit f777740

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_tags.py

-2
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,13 @@ def test_tag_platlib_wheel(monkeypatch):
4848
assert str(builder.tag) == f'{INTERPRETER}-{ABI}-{PLATFORM}'
4949

5050

51-
@pytest.mark.skipif(not ABI3SUFFIX, reason='Stable ABI not supported by Python interpreter')
5251
def test_tag_stable_abi(monkeypatch):
5352
builder = wheel_builder_test_factory(monkeypatch, {
5453
'platlib': [f'extension{ABI3SUFFIX}'],
5554
})
5655
assert str(builder.tag) == f'{INTERPRETER}-abi3-{PLATFORM}'
5756

5857

59-
@pytest.mark.skipif(not ABI3SUFFIX, reason='Stable ABI not supported by Python interpreter')
6058
def test_tag_mixed_abi(monkeypatch):
6159
builder = wheel_builder_test_factory(monkeypatch, {
6260
'platlib': [f'extension{ABI3SUFFIX}', f'another{SUFFIX}'],

0 commit comments

Comments
 (0)