[issue47035] Rewrite asyncio queue tests with IsolatedAsyncioTestCase

2022-03-20 Thread STINNER Victor
STINNER Victor added the comment: Please have a look at bpo-47076 "test_asyncio: test_get_cancelled() fails randomly on x86-64 macOS 3.x". -- nosy: +vstinner ___ Python tracker

[issue47035] Rewrite asyncio queue tests with IsolatedAsyncioTestCase

2022-03-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue47035] Rewrite asyncio queue tests with IsolatedAsyncioTestCase

2022-03-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- versions: -Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue47035] Rewrite asyncio queue tests with IsolatedAsyncioTestCase

2022-03-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +30027 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31935 ___ Python tracker ___

[issue47035] Rewrite asyncio queue tests with IsolatedAsyncioTestCase

2022-03-16 Thread Andrew Svetlov
New submission from Andrew Svetlov : It can help with future maintenance a lot. Current tests are cumbersome. -- components: asyncio messages: 415342 nosy: asvetlov, yselivanov priority: normal severity: normal status: open title: Rewrite asyncio queue tests with