From 68713c0a26395e68240445fae62940091cb45519 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 29 Nov 2020 17:33:59 +0000 Subject: [PATCH] Mark the failing test as xfail --- tests/unit/test_models_wheel.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/unit/test_models_wheel.py b/tests/unit/test_models_wheel.py index 05ee74262..a4f954a2c 100644 --- a/tests/unit/test_models_wheel.py +++ b/tests/unit/test_models_wheel.py @@ -93,6 +93,14 @@ class TestWheelFile(object): w = Wheel('simple-0.1-cp27-none-macosx_10_9_intel.whl') assert not w.supported(tags=tags) + @pytest.mark.xfail( + reason=( + "packaging.tags changed behaviour in this area, and @pradyunsg " + "decided as the release manager that this behaviour change is less " + "critical than Big Sur support for pip 20.3. See " + "https://github.com/pypa/packaging/pull/361 for further discussion." + ) + ) def test_supported_multiarch_darwin(self): """ Multi-arch wheels (intel) are supported on components (i386, x86_64)