Skip to content

Commit bee627c

Browse files
gh-113384: Skip test_freeze for framework builds on macOS (#113390)
1 parent c31943a commit bee627c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_tools/test_freeze.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
@support.requires_zlib()
1616
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
17+
@unittest.skipIf(sys.platform == 'darwin' and sys._framework,
18+
'not supported for frameworks builds on macOS')
1719
@support.skip_if_buildbot('not all buildbots have enough space')
1820
# gh-103053: Skip test if Python is built with Profile Guided Optimization
1921
# (PGO), since the test is just too slow in this case.

0 commit comments

Comments
 (0)