[issue9028] test_support.run_unittest cmdline options and arguments

2010-11-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Closing again, following Michael’s comment. Re: run_unittest, it’s a very small function mostly obsolete now, I don’t think there are compat rules. Just don’t use it. -- nosy: +eric.araujo status: open - closed

[issue9028] test_support.run_unittest cmdline options and arguments

2010-07-15 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: Cool, unittest.main() worked for me, but I still lack the introspection to see what tests are available inside the file. Would there be any objections against quickly adding -l, --list option to expose the result of test discovery as it

[issue9028] test_support.run_unittest cmdline options and arguments

2010-07-15 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: s/need/have/ -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9028 ___ ___

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-20 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: RDM, running your way will execute test from standard library location of installed Python. python -m unittest test.test_httpservers.BaseHTTPServerTestCase.test_handler But I want to execute test from my own patched copy of

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-20 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: But I want to execute test from my own patched copy of test_httpservers.py with whatever python I want. I.e. C:\Python27\python.exe Z:\python-cgi-tests\test_httpservers.py ... If you use Python 2.7 then the following at the end of

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-20 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: If you use Python 2.7 then the following at the end of the test module enables the same command line features that David Murray pointed you to: if __name__ == '__main__':    unittest.main() Unfortunately, test_httpservers.py from

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-20 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: Right. That code should change. My intention is to go through the whole of the Python test suite and make them compatible with the new unittest features. I also intend to add extensions to unittest to allow listing of collecting tests

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-18 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: 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

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-18 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: Damn. I still failed to forge last use case. In should of course read: python test_httpservers.py CGIHTTPServer::url_collapse_path_split CGIHTTPServer::url_collapse_path_split ... ok Wave develops bad habits. --

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-18 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: These sound more like features for the unittest runner (one of which is implemented already). Also, please don't propagate :: as a namespace separator in Python. That's what . is for. -- nosy: +exarkun

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-18 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Yes, running individual tests has already been implemented as part of unittest (where it belongs): ./python -m unittest test.test_httpservers.BaseHTTPServerTestCase.test_handler .

[issue9028] test_support.run_unittest cmdline options and arguments

2010-06-18 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9028 ___ ___