Skip to content

Commit 77e7a04

Browse files
authored
GH-91752: Skip test_freeze_simple_script when zlib is not available (#91758)
Fixes GH-91752.
1 parent 20490d5 commit 77e7a04

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/test/test_tools/test_freeze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
with imports_under_tool('freeze', 'test'):
1313
import freeze as helper
1414

15-
15+
@support.requires_zlib()
1616
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
1717
@support.skip_if_buildbot('not all buildbots have enough space')
1818
class TestFreeze(unittest.TestCase):
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added @requires_zlib to test.test_tools.test_freeze.TestFreeze.

0 commit comments

Comments
 (0)