File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11"""Sanity-check tests for the "freeze" tool."""
22
3+ import os
34import sys
45import textwrap
56import unittest
67
7- from test import support
8-
98from . import imports_under_tool , skip_if_missing
109skip_if_missing ('freeze' )
1110with imports_under_tool ('freeze' , 'test' ):
1211 import freeze as helper
1312
1413
1514@unittest .skipIf (sys .platform .startswith ('win' ), 'not supported on Windows' )
15+ @unittest .skipIf (os .environ .get ('USER' ) == 'buildbot' ,
16+ 'not all buildbots have enough space' )
1617class TestFreeze (unittest .TestCase ):
1718
1819 def test_freeze_simple_script (self ):
19- if support .use_resources :
20- support .requires ('cpu' , 'test re-builds Python out-of-tree' )
2120 script = textwrap .dedent ("""
2221 import sys
2322 print('running...')
You can’t perform that action at this time.
0 commit comments