]> granicus.if.org Git - python/commit
bpo-36719: regrtest -jN no longer stops on crash (GH-13231)
authorVictor Stinner <vstinner@redhat.com>
Mon, 13 May 2019 17:17:54 +0000 (19:17 +0200)
committerGitHub <noreply@github.com>
Mon, 13 May 2019 17:17:54 +0000 (19:17 +0200)
commitb0917df329ba14b7bc6fa782c1b61e7a2163af0b
treedc5890e4e93dc4306b545a52d6c523366f69f55a
parent85c69d5c4c5682a70201612128e838d438c01499
bpo-36719: regrtest -jN no longer stops on crash (GH-13231)

"python3 -m test -jN ..." now continues the execution of next tests
when a worker process crash (CHILD_ERROR state). Previously, the test
suite stopped immediately. Use --failfast to stop at the first error.

Moreover, --forever now also implies --failfast.
Lib/test/libregrtest/cmdline.py
Lib/test/libregrtest/main.py
Lib/test/libregrtest/runtest.py
Lib/test/libregrtest/runtest_mp.py
Misc/NEWS.d/next/Tests/2019-05-10-01-50-30.bpo-36719.O84ZWv.rst [new file with mode: 0644]