diff options
| author | Alex Grönholm <alex.gronholm@nextday.fi> | 2020-01-21 23:07:53 +0200 |
|---|---|---|
| committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2020-01-21 23:17:45 +0200 |
| commit | dc85e20769f91d267a0cf528f7ac592613d3536b (patch) | |
| tree | 811e7fe4be378041948db851e4ca1fcbcfde9d30 /tests | |
| parent | b7339fbbd9215a5789090ecfac924b67eeb1086b (diff) | |
| download | wheel-git-dc85e20769f91d267a0cf528f7ac592613d3536b.tar.gz | |
Skipped the limited ABI test on Python 2
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_bdist_wheel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_bdist_wheel.py b/tests/test_bdist_wheel.py index 729a6a2..4c98eda 100644 --- a/tests/test_bdist_wheel.py +++ b/tests/test_bdist_wheel.py @@ -103,6 +103,7 @@ def test_build_number(dummy_dist, monkeypatch, tmpdir): assert 'dummy_dist-1.0.dist-info/METADATA' in filenames +@pytest.mark.skipif(sys.version_info[0] < 3, reason='The limited ABI only works on Python 3+') def test_limited_abi(monkeypatch, tmpdir): """Test that building a binary wheel with the limited ABI works.""" this_dir = os.path.dirname(__file__) |
