Skip to content

Commit e543320

Browse files
Add skip condition for async break tests
Skip coroutine tests if SKIP_CORO_TESTS is True.
1 parent f14b358 commit e543320

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/test/test_pdb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4587,6 +4587,7 @@ def bar():
45874587
]))
45884588
self.assertIn('break in bar', stdout)
45894589

4590+
@unittest.skipIf(SKIP_CORO_TESTS, "Coroutine tests are skipped")
45904591
def test_async_break(self):
45914592
script = """
45924593
import asyncio

0 commit comments

Comments
 (0)