[issue8911] regrtest.main should have a test skipping argument

2013-03-28 Thread Ezio Melotti
Ezio Melotti added the comment: I tried to grep for sys.argv in the importlib tests and didn't find anything. 3 years passed since the initial report, and since no one seem to have asked for this feature, I'm going to close this. -- resolution: -> out of date stage: needs patch -> co

[issue8911] regrtest.main should have a test skipping argument

2013-03-26 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue8911] regrtest.main should have a test skipping argument

2012-09-03 Thread moijes12
Changes by moijes12 : -- nosy: -moijes12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8911] regrtest.main should have a test skipping argument

2012-09-03 Thread Chris Jerdonek
Chris Jerdonek added the comment: > If you look at importlib.regrtest you will notice it has to muck with > sys.argv in order to get certain tests skipped. This is reminiscent of issue 15132 which I filed, but for unittest.TestProgram() rather than regrtest.main(). > 6. Switch regrtest.py to

[issue8911] regrtest.main should have a test skipping argument

2012-09-03 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- nosy: +cjerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue8911] regrtest.main should have a test skipping argument

2012-09-03 Thread moijes12
Changes by moijes12 : -- nosy: +moijes12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue8911] regrtest.main should have a test skipping argument

2010-12-11 Thread Jerry Seutter
Jerry Seutter added the comment: Hi Tarsis, I looked at your patch. It looks like it only does step 1 and doesn't move away from parse_command_line directly modifying sys.argv. Was this the patch file that you intended to upload? -- ___ Python t

[issue8911] regrtest.main should have a test skipping argument

2010-11-20 Thread Tarsis Azevedo
Tarsis Azevedo added the comment: Hi all, I followed from 1 to 5 steps of jerry's comment and removed a recursive import I didnt get it. The patch is attached. -- keywords: +patch nosy: +Tarsis.Azevedo Added file: http://bugs.python.org/file19697/issue8911.diff _

[issue8911] regrtest.main should have a test skipping argument

2010-07-31 Thread Éric Araujo
Éric Araujo added the comment: 1 to 5 seem fine in my (non-core dev) eyes. 6 is okay only if it really helps (e.g. reducing maintenance cost or providing features not available in optparse), else it’s gratuitous. -- nosy: +merwok ___ Python tracker

[issue8911] regrtest.main should have a test skipping argument

2010-07-28 Thread Jerry Seutter
Jerry Seutter added the comment: Hi Brett (and others) I'm thinking of making the following changes: 1. In Lib/test/regrtest.py, move command line parsing out of main() into a function called parse_command_line() 2. parse_command_line() will parse command line settings and store them in a d

[issue8911] regrtest.main should have a test skipping argument

2010-07-19 Thread Jerry Seutter
Changes by Jerry Seutter : -- assignee: -> jerry.seutter nosy: +jerry.seutter ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8911] regrtest.main should have a test skipping argument

2010-06-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti, flox stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs

[issue8911] regrtest.main should have a test skipping argument

2010-06-05 Thread Brett Cannon
New submission from Brett Cannon : If you look at importlib.regrtest you will notice it has to muck with sys.argv in order to get certain tests skipped. It would be much better if regrtest.main had an argument you could specify instead which listed the tests to skip. This might lead to breakin