mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-108416: Mark slow but not CPU bound test methods with requires_resource('walltime') (GH-108480)
This commit is contained in:
parent
f980cc19b9
commit
1e0d62793a
18 changed files with 48 additions and 3 deletions
|
@ -269,6 +269,7 @@ class ProcessTestCase(BaseTestCase):
|
|||
self.assertIn('stdin', c.exception.args[0])
|
||||
self.assertIn('input', c.exception.args[0])
|
||||
|
||||
@support.requires_resource('walltime')
|
||||
def test_check_output_timeout(self):
|
||||
# check_output() function with timeout arg
|
||||
with self.assertRaises(subprocess.TimeoutExpired) as c:
|
||||
|
@ -1643,6 +1644,7 @@ class RunFuncTestCase(BaseTestCase):
|
|||
self.assertIn('stdin', c.exception.args[0])
|
||||
self.assertIn('input', c.exception.args[0])
|
||||
|
||||
@support.requires_resource('walltime')
|
||||
def test_check_output_timeout(self):
|
||||
with self.assertRaises(subprocess.TimeoutExpired) as c:
|
||||
cp = self.run_python((
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue