Skip to content

Commit

Permalink
GH-91752: Skip test_freeze_simple_script when zlib is not available (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhigyanBose committed May 3, 2022
1 parent 20490d5 commit 77e7a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_tools/test_freeze.py
Expand Up @@ -12,7 +12,7 @@
with imports_under_tool('freeze', 'test'):
import freeze as helper


@support.requires_zlib()
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
@support.skip_if_buildbot('not all buildbots have enough space')
class TestFreeze(unittest.TestCase):
Expand Down
@@ -0,0 +1 @@
Added @requires_zlib to test.test_tools.test_freeze.TestFreeze.

0 comments on commit 77e7a04

Please sign in to comment.