[issue6001] Test discovery for unittest

2009-05-29 Thread Michael Foord
Michael Foord added the comment: Committed in revision 73027. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue6001] Test discovery for unittest

2009-05-27 Thread Michael Foord
Michael Foord added the comment: http://codereview.appspot.com/63157 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue6001] Test discovery for unittest

2009-05-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Would you like to upload your patch to Rietveld? -- nosy: +pitrou ___ Python tracker ___ ___ Python-

[issue6001] Test discovery for unittest

2009-05-24 Thread Michael Foord
Michael Foord added the comment: Georg Brandl has pointed out various minor issues in the docs (and discover docstring) that I am correcting. -- ___ Python tracker ___ __

[issue6001] Test discovery for unittest

2009-05-24 Thread Michael Foord
Michael Foord added the comment: Updated patch with documentation and fixed command line usage message. Unless there are objections I intend to check this in in the next few days. It would be helpful if someone else could go over the documentation and check for errors / typos etc. I've already

[issue6001] Test discovery for unittest

2009-05-12 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue6001] Test discovery for unittest

2009-05-12 Thread Michael Foord
Michael Foord added the comment: The usage information in TestProgram in this patch is not correct. If __name__ != __main__ it should be unchanged - the new usage message should only be displayed if unittest is run as __main__. -- ___ Python tracke

[issue6001] Test discovery for unittest

2009-05-11 Thread Michael Foord
New submission from Michael Foord : Attached is a patch that implements test discovery for unittest. It includes command line argument handling (awkward manual handling but works fine...), so that it can be invoked through: python -m unittest discover python -m unittest discover start_dir