bpo-38875: test_capi: trashcan tests require cpu resource (GH-17314)

test_capi: trashcan tests now require the test "cpu" resource.
This commit is contained in:
Victor Stinner 2019-11-21 12:54:02 +01:00 committed by GitHub
parent 5c534da798
commit 0127bb1c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -351,9 +351,11 @@ class CAPITest(unittest.TestCase):
for i in range(1000):
L = MyList((L,))
@support.requires_resource('cpu')
def test_trashcan_python_class1(self):
self.do_test_trashcan_python_class(list)
@support.requires_resource('cpu')
def test_trashcan_python_class2(self):
from _testcapi import MyList
self.do_test_trashcan_python_class(MyList)

View file

@ -0,0 +1 @@
test_capi: trashcan tests now require the test "cpu" resource.