Skip to content

Commit

Permalink
TST: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed Nov 11, 2022
1 parent 9532aa8 commit f777740
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,13 @@ 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}'],
})
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}'],
Expand Down

0 comments on commit f777740

Please sign in to comment.