This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: failfast support for regrtest
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, michael.foord, pitrou, python-dev
Priority: normal Keywords: patch

Created on 2011-07-23 20:28 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
failfast.patch pitrou, 2011-07-23 20:28
Messages (2)
msg141017 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-07-23 20:28
This patch adds a new --failfast (-G) argument to regrtest which stops running the tests as soon as a test fails (when using unittest-based test cases). Useful with long test suites such as test_io and test_subprocess.
msg141018 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-07-23 20:39
New changeset 9f847dfba217 by Antoine Pitrou in branch '3.2':
Issue #12624: It is now possible to fail after the first failure when
http://hg.python.org/cpython/rev/9f847dfba217

New changeset 01d18277c40b by Antoine Pitrou in branch 'default':
Issue #12624: It is now possible to fail after the first failure when
http://hg.python.org/cpython/rev/01d18277c40b
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56833
2011-07-23 21:10:08sandro.tosisetresolution: not a bug -> fixed
2011-07-23 20:40:02pitrousetstatus: open -> closed
resolution: not a bug
stage: patch review -> resolved
2011-07-23 20:39:25python-devsetnosy: + python-dev
messages: + msg141018
2011-07-23 20:28:09pitroucreate