summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest/test_async_case.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.14] gh-134657: Remove newly added private names from asyncio.__all__ ↵Miss Islington (bot)2025-07-091-3/+3
| | | | | | | | (GH-134665) (#136455) gh-134657: Remove newly added private names from asyncio.__all__ (GH-134665) (cherry picked from commit 797abd1f7fdeb744bf9f683ef844e7279aad3d72) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
* gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)Kumar Aditya2025-04-121-1/+1
|
* gh-127949: deprecate `asyncio.set_event_loop` (#128218)Kumar Aditya2024-12-241-1/+1
| | | Deprecate `asyncio.set_event_loop` to be removed in Python 3.16.
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-181-1/+1
| | | This deprecates `asyncio.get_event_loop_policy` and will be removed in Python 3.16.
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-181-2/+2
| | | | First step towards deprecating the asyncio policy system. This deprecates `asyncio.set_event_loop_policy` and will be removed in Python 3.16.
* gh-127221: Add colour to unittest output (#127223)Hugo van Kemenade2024-12-051-0/+2
| | | Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
* gh-120388: Improve deprecation warning message, when test returns non-None ↵Nikita Sobolev2024-06-121-0/+3
| | | | | | (#120401) Co-authored-by: Alex Waygood <alex.waygood@gmail.com> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* gh-110774: allow setting the Runner(loop_factory=...) from ↵Thomas Grainger2023-10-311-0/+14
| | | | | | | IsolatedAsyncioTestCase (#110776) Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
* Add more details in test_unittest (GH-99626)Serhiy Storchaka2022-11-211-26/+44
|
* gh-97837: Change deprecation warning message in `unittest` (#97838)Nikita Sobolev2022-10-051-3/+14
|
* gh-96021: Explicitly close the IsolatedAsyncioTestCase runner in tests ↵Serhiy Storchaka2022-08-241-2/+7
| | | | | | | | | (GH-96135) Tests for IsolatedAsyncioTestCase.debug() rely on the runner be closed in __del__. It makes tests depending on the GC an unreliable on other implementations. It is better to close the runner explicitly even if currently there is no a public API for this.
* GH-95736: fix IsolatedAsyncioTestCase to initialize Runner before calling ↵Kumar Aditya2022-08-161-0/+15
| | | | setup functions (#95898)
* gh-93839: Move Lib/unttest/test/ to Lib/test/test_unittest/ (#94043)Victor Stinner2022-06-211-0/+439
* Move Lib/unittest/test/ to Lib/test/test_unittest/ * Remove Lib/test/test_unittest.py * Replace unittest.test with test.test_unittest * Remove unittest.load_tests() * Rewrite unittest __init__.py and __main__.py * Update build system, CODEOWNERS, and wasm_assets.py