Skip to content

Commit 8c3019e

Browse files
committed
Remove cpu test
1 parent 28c8fa3 commit 8c3019e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
- name: Display build info
168168
run: make pythoninfo
169169
- name: Tests
170-
run: make buildbottest TESTOPTS="-j4 -uall,-cpu"
170+
run: make buildbottest TESTOPTS="-j4 -uall"
171171

172172
build_ubuntu:
173173
name: 'Ubuntu'

Lib/test/test_tools/test_freeze.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
import unittest
66

77
from test import support
8-
from test.support import os_helper
8+
from test.support import os_helper, requires_resource
99
from test.test_tools import imports_under_tool, skip_if_missing
1010

1111
skip_if_missing('freeze')
1212
with imports_under_tool('freeze', 'test'):
1313
import freeze as helper
1414

1515
@support.requires_zlib()
16+
@requires_resource('cpu')
1617
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
1718
@support.skip_if_buildbot('not all buildbots have enough space')
1819
class TestFreeze(unittest.TestCase):

0 commit comments

Comments
 (0)