diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2023-12-22 10:35:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 10:35:54 (GMT) |
commit | bee627c1e29a070562d1a540a6e513d0daa322f5 (patch) | |
tree | 67661ff88e8676a3654155a83c7818582eaa714c /Lib/test/test_tools | |
parent | c31943af16f885c8cf5d5a690c25c366afdb2862 (diff) | |
download | cpython-bee627c1e29a070562d1a540a6e513d0daa322f5.zip cpython-bee627c1e29a070562d1a540a6e513d0daa322f5.tar.gz cpython-bee627c1e29a070562d1a540a6e513d0daa322f5.tar.bz2 |
gh-113384: Skip test_freeze for framework builds on macOS (#113390)
Diffstat (limited to 'Lib/test/test_tools')
-rw-r--r-- | Lib/test/test_tools/test_freeze.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_tools/test_freeze.py b/Lib/test/test_tools/test_freeze.py index 671ec29..0e7ed67 100644 --- a/Lib/test/test_tools/test_freeze.py +++ b/Lib/test/test_tools/test_freeze.py @@ -14,6 +14,8 @@ with imports_under_tool('freeze', 'test'): @support.requires_zlib() @unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows') +@unittest.skipIf(sys.platform == 'darwin' and sys._framework, + 'not supported for frameworks builds on macOS') @support.skip_if_buildbot('not all buildbots have enough space') # gh-103053: Skip test if Python is built with Profile Guided Optimization # (PGO), since the test is just too slow in this case. |