summaryrefslogtreecommitdiffstats
path: root/Lib/test/libregrtest
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-108303: Move all doctest related files and tests to `Lib/test/test_...Nikita Sobolev2024-01-191-0/+1
* [3.11] gh-108927: Fix removing testing modules from sys.modules (GH-108952) (...Miss Islington (bot)2023-12-042-9/+13
* [3.11] [3.12] gh-109413: libregrtest: Backport `.py`-file changes from GH-112...Miss Islington (bot)2023-12-017-12/+18
* [3.11] [3.12] gh-109413: libregrtest: enable mypy's `--strict-optional` check...Miss Islington (bot)2023-12-014-4/+48
* [3.11] gh-109413: regrtest: add WorkerRunTests class (GH-112588) (#112594)Miss Islington (bot)2023-12-014-22/+28
* [3.11] gh-111929: Fix regrtest clear_caches() (#111949)Victor Stinner2023-11-121-7/+0
* [3.11] gh-111929: Fix regrtest --pgo: test_str => test_unicode (GH-111938) (#...Miss Islington (bot)2023-11-101-1/+1
* [3.11] gh-111881: Import doctest lazily in libregrtest (GH-111884) (#111894)Miss Islington (bot)2023-11-091-5/+8
* [3.11] gh-110367: Make regrtest --verbose3 compatible with --huntrleaks -jN (...Miss Islington (bot)2023-11-011-2/+8
* [3.11] gh-108303: Move all inspect test files to `test_inspect/` (GH-109607) ...Nikita Sobolev2023-10-311-0/+1
* [3.11] gh-111165: Add missed "support." prefix for "verbose" (GH-111327) (GH-...Miss Islington (bot)2023-10-251-1/+1
* [3.11] [3.12] gh-111165: Move test running code from test.support to libregrt...Serhiy Storchaka2023-10-257-11/+335
* [3.11] gh-110918: regrtest: allow to intermix --match and --ignore options (G...Serhiy Storchaka2023-10-218-42/+36
* [3.11] gh-110932: Fix regrtest for SOURCE_DATE_EPOCH (GH-111143) (#111153)Miss Islington (bot)2023-10-212-9/+14
* [3.11] gh-110756: Fix libregrtest clear_caches() for distutils (#111011)Victor Stinner2023-10-171-0/+9
* [3.11] regrtest: Prepend 'use' options in --{fast,slow}-ci (GH-110363) (#110924)Miss Islington (bot)2023-10-161-4/+6
* gh-110756: Sync regrtest with main branch (#110758) (#110781)Victor Stinner2023-10-1218-1895/+2884
* [3.11] [3.12] gh-110167: Increase support.LOOPBACK_TIMEOUT to 10 seconds (GH-...Miss Islington (bot)2023-10-051-7/+10
* [3.11] gh-109972: Split test_gdb.py into test_gdb package (#109977) (… (#11...Victor Stinner2023-10-041-0/+1
* [3.11] gh-109615: Fix support test_copy_python_src_ignore() (#109958) (#109962)Victor Stinner2023-09-271-5/+7
* [3.11] gh-109615: Fix test_tools.test_freeze SRCDIR (#109935) (#109951)Victor Stinner2023-09-271-1/+1
* [3.11] gh-108388: Convert test_concurrent_futures to package (#108401) (#109704)Victor Stinner2023-09-221-0/+1
* [3.11] gh-108388: Split test_multiprocessing_spawn (GH-108396) (#109688)Miss Islington (bot)2023-09-211-0/+3
* [3.11] gh-108303: Move `test_future` into its own test_future_stmt subdir (#1...Victor Stinner2023-09-211-0/+1
* [3.11] gh-103053: Skip test_freeze_simple_script() on PGO build (#109591) (#1...Victor Stinner2023-09-201-10/+2
* [3.11] gh-108822: Fix regrtest clear_caches() (#109432)Victor Stinner2023-09-151-7/+0
* [3.11] gh-108416: Mark slow but not CPU bound test methods with requires_reso...Serhiy Storchaka2023-09-051-1/+3
* [3.11] gh-89392: Remove support of test_main() in libregrtest (GH-108876) (GH...Serhiy Storchaka2023-09-051-5/+4
* [3.11] gh-108822: Backport libregrtest changes from the main branch (#108820)Victor Stinner2023-09-036-282/+520
* [3.11] gh-101634: regrtest reports decoding error as failed test (#106169) (#...Victor Stinner2023-06-281-1/+11
* [3.11] bpo-46523: fix tests rerun when `setUp[Class|Module]` fails (GH-30895)...Łukasz Langa2023-04-071-2/+34
* gh-95027: Fix regrtest stdout encoding on Windows (GH-98492)Miss Islington (bot)2022-10-211-3/+11
* [3.11] gh-94026: Buffer regrtest worker stdout in temporary file (GH-94253) (...Christian Heimes2022-06-291-26/+28
* Run Tools/scripts/reindent.py (GH-94225)Miss Islington (bot)2022-06-261-1/+0
* gh-94052: Don't re-run failed tests with --python option (GH-94054)Miss Islington (bot)2022-06-213-6/+17
* [3.11] gh-84461: Fix Emscripten umask and permission issues (GH-94002) (GH-94...Christian Heimes2022-06-191-0/+12
* gh-84461: Fix parallel testing on WebAssembly (GH-93768)Miss Islington (bot)2022-06-131-3/+8
* gh-84461: Add ability for multiprocessed libregrtest to use a different Pytho...Ethan Smith2022-05-022-2/+11
* gh-91904: Fix setting envvar PYTHONREGRTEST_UNICODE_GUARD (GH-91905)Serhiy Storchaka2022-04-251-4/+5
* gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)Inada Naoki2022-04-221-2/+1
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-1/+3
* bpo-40280: Detect if WASM platform supports threading (GH-32243)Christian Heimes2022-04-021-1/+4
* bpo-44336: Prevent tests hanging on child process handles on Windows (GH-26578)Jeremy Kloth2022-03-222-185/+117
* Fix EncodingWarning in libregrtest (GH-31654)Inada Naoki2022-03-031-1/+1
* bpo-46205: exit if no workers are alive in runtest_mp (GH-30470)Sam Gross2022-01-111-8/+10
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-1/+11
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-11/+1
* bpo-45745: Remove regrtest --findleaks options (GH-29514)Victor Stinner2021-11-123-10/+3
* bpo-10572: Fixup Lib/test/libregrtest/pgo.py (GH-29327)Erlend Egeberg Aasland2021-11-011-1/+1
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Gregory P. Smith2021-10-221-0/+24