Skip to content

Commit e59ad57

Browse files
[3.11] gh-113384: Skip test_freeze for framework builds on macOS (GH-113390) (#113396)
gh-113384: Skip test_freeze for framework builds on macOS (GH-113390) (cherry picked from commit bee627c) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
1 parent 706b40e commit e59ad57

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)