[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: > The documentation already covers that "python -m unittest test_module" > usage works only in 2.7+. > > "Changed in version 2.7: In earlier versions it was only possible to > run individual test methods and not modules or classes." But the command line help

[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread Berker Peksag
Berker Peksag added the comment: > The documentation should be fixed then: > http://docs.python.org/2/library/unittest#command-line-interface The documentation already covers that "python -m unittest test_module" usage works only in 2.7+. "Changed in version 2.7: In earlier versions it was onl

[issue6514] "python -m unittest " does not run any tests

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: The documentation should be fixed then: http://docs.python.org/2/library/unittest#command-line-interface -- nosy: +techtonik ___ Python tracker __

[issue6514] "python -m unittest " does not run any tests

2011-04-10 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue6514] "python -m unittest " does not run any tests

2009-07-20 Thread Michael Foord
Michael Foord added the comment: This isn't a bug - the command line message if you run "python -m unittest" on Python 2.4-2.6 is just confusing. It has never worked. -- resolution: -> rejected status: open -> closed ___ Python tracker

[issue6514] "python -m unittest " does not run any tests

2009-07-20 Thread Michael Foord
Michael Foord added the comment: Ha - no I can't reproduce it on trunk. The python -m features are new in trunk and neither documented nor working in 2.4-2.6. -- ___ Python tracker

[issue6514] "python -m unittest " does not run any tests

2009-07-20 Thread Michael Foord
Michael Foord added the comment: I can duplicate the problem - I wonder if this has to do with the refactoring into a package? Anyway, thanks for catching this. -- ___ Python tracker ___

[issue6514] "python -m unittest " does not run any tests

2009-07-20 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> michael.foord nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6514] "python -m unittest " does not run any tests

2009-07-18 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone : exar...@boson:~$ cat > test_foo.py from unittest import TestCase class SomeTests(TestCase): def test_foo(self): pass exar...@boson:~$ python -m unittest test_foo -- Ran 0 te