We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9532aa8 commit f777740Copy full SHA for f777740
tests/test_tags.py
@@ -48,15 +48,13 @@ def test_tag_platlib_wheel(monkeypatch):
48
assert str(builder.tag) == f'{INTERPRETER}-{ABI}-{PLATFORM}'
49
50
51
-@pytest.mark.skipif(not ABI3SUFFIX, reason='Stable ABI not supported by Python interpreter')
52
def test_tag_stable_abi(monkeypatch):
53
builder = wheel_builder_test_factory(monkeypatch, {
54
'platlib': [f'extension{ABI3SUFFIX}'],
55
})
56
assert str(builder.tag) == f'{INTERPRETER}-abi3-{PLATFORM}'
57
58
59
60
def test_tag_mixed_abi(monkeypatch):
61
62
'platlib': [f'extension{ABI3SUFFIX}', f'another{SUFFIX}'],
0 commit comments