Skip to content

Commit

Permalink
Remove cpu test
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Feb 18, 2023
1 parent 28c8fa3 commit 8c3019e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
- name: Display build info
run: make pythoninfo
- name: Tests
run: make buildbottest TESTOPTS="-j4 -uall,-cpu"
run: make buildbottest TESTOPTS="-j4 -uall"

build_ubuntu:
name: 'Ubuntu'
Expand Down
3 changes: 2 additions & 1 deletion Lib/test/test_tools/test_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
import unittest

from test import support
from test.support import os_helper
from test.support import os_helper, requires_resource
from test.test_tools import imports_under_tool, skip_if_missing

skip_if_missing('freeze')
with imports_under_tool('freeze', 'test'):
import freeze as helper

@support.requires_zlib()
@requires_resource('cpu')
@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 comments on commit 8c3019e

Please sign in to comment.