GH-91752: Skip test_freeze_simple_script when zlib is not available (#91758)

Fixes GH-91752.
This commit is contained in:
Abhigyan Bose 2022-05-03 22:49:54 +05:30 committed by GitHub
parent 20490d5018
commit 77e7a04cd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@ skip_if_missing('freeze')
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):