[issue12626] run test cases based on a glob filter

2011-07-31 Thread Michael Foord
Michael Foord added the comment: I agree with Antoine, as test.support is not a public api adding new features to assist with debugging is fine. -- ___ Python tracker ___ _

[issue12626] run test cases based on a glob filter

2011-07-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Well, let's say I don't consider test.regrtest, and especially its myriad options, a public API. The aim is to make bug diagnosis and fixing easier. -- ___ Python tracker ___

[issue12626] run test cases based on a glob filter

2011-07-30 Thread Éric Araujo
Éric Araujo added the comment: I didn’t think this would go into a stable version (see #10849 for example). -- ___ Python tracker ___ ___

[issue12626] run test cases based on a glob filter

2011-07-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed a slightly updated patch that also works with -j. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue12626] run test cases based on a glob filter

2011-07-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5d7a2bd9a3d1 by Antoine Pitrou in branch '3.2': Issue #12626: In regrtest, allow to filter tests using a glob filter http://hg.python.org/cpython/rev/5d7a2bd9a3d1 New changeset 018e14a46454 by Antoine Pitrou in branch 'default': Issue #12626: In re

[issue12626] run test cases based on a glob filter

2011-07-29 Thread Éric Araujo
Éric Araujo added the comment: I’d love this in regrtest and unittest. -- nosy: +eric.araujo versions: -Python 3.2 ___ Python tracker ___ __

[issue12626] run test cases based on a glob filter

2011-07-24 Thread Eric Snow
Changes by Eric Snow : -- nosy: +ericsnow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue12626] run test cases based on a glob filter

2011-07-24 Thread Michael Foord
Michael Foord added the comment: I love the functionality. Running individual tests (or groups of tests) with unittest is a *pain*. I had hoped to solve this through unittest extensions, but this is taking me longer to get to than I had hoped. So I would like to add this to unittest, but obvi

[issue12626] run test cases based on a glob filter

2011-07-23 Thread Ezio Melotti
Ezio Melotti added the comment: See also #12231 for a similar suggestion. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12626] run test cases based on a glob filter

2011-07-23 Thread Antoine Pitrou
New submission from Antoine Pitrou : This patch allows to only run tests which satisfy a glob filter, using the --match (-m) option to regrtest. For example: ./python -m test -m "*Signal*" -v test_io will execute all the signal-related tests in test_io. -- components: Tests files: r