We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57920bb commit 0a00b77Copy full SHA for 0a00b77
tests/test_tags.py
@@ -78,6 +78,7 @@ def test_python_host_platform(monkeypatch):
78
@pytest.mark.skipif(sys.version_info < (3, 13), reason='requires Python 3.13 or higher')
79
def test_ios_platform_tag(monkeypatch):
80
# Mock being on iOS
81
+ monkeypatch.setattr(sys.implementation, '_multiarch', 'arm64-iphoneos')
82
monkeypatch.setattr(sysconfig, 'get_platform', Mock(return_value='ios-13.0-arm64-iphoneos'))
83
ios_ver = platform.IOSVersionInfo('iOS', '13.0', 'iPhone', False)
84
monkeypatch.setattr(platform, 'ios_ver', Mock(return_value=ios_ver))
0 commit comments