[issue9027] add test_support.run_unittest command line options and arguments

2010-06-27 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9027] add test_support.run_unittest command line options and arguments

2010-06-18 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: -> committed/rejected superseder: -> test_support.run_unittest cmdline options and arguments ___ Python tracker

[issue9027] add test_support.run_unittest command line options and arguments

2010-06-18 Thread anatoly techtonik
anatoly techtonik added the comment: Too many errors in description. Please close this ticket with #9028 as a superceder. -- ___ Python tracker ___ _

[issue9027] add test_support.run_unittest command line options and arguments

2010-06-18 Thread anatoly techtonik
anatoly techtonik added the comment: The example in first post should read: > python test_httpservers.py --list *auth* CGIHTTPServerTestCase::authorization (several distractions a minute can drive anyone mad) -- ___ Python tracker

[issue9027] add test_support.run_unittest command line options and arguments

2010-06-18 Thread anatoly techtonik
anatoly techtonik added the comment: 3. The final goal is to be able to run single test as: > python test_httpservers.py BaseHTTPServer::handler -- ___ Python tracker ___ __

[issue9027] add test_support.run_unittest command line options and arguments

2010-06-18 Thread anatoly techtonik
New submission from anatoly techtonik : Need --help, --list options and TestSute.testcase args for test_support.run_unittest User story: I am covering CGIHTTPServer with tests according to http://www.rfc-editor.org/rfc/rfc3875.txt speccy and want to run a single test in a cycle. I am running