[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset 24c2c20873dc800c99d1dabf26419b40cadfe627 by Victor Stinner in branch '2.7': bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest (#2249) https://github.com/python/cpython/commit/24c2c20873dc800c99d1dabf26419b40cadfe627

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2301 ___ Python tracker ___ ___

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2299 ___ Python tracker ___ ___

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset a0ccc54e6dffacf9e7c06f2a3e9056d2d35d21eb by Victor Stinner in branch '3.6': Synchronize libregrtest from master to 3.6 (#2244) https://github.com/python/cpython/commit/a0ccc54e6dffacf9e7c06f2a3e9056d2d35d21eb --

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: I created bpo-30683: Enhance doctest support in regrtest --list-cases. -- ___ Python tracker ___

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2288 ___ Python tracker ___ ___

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset b0c58d3c569d1b9060248e665857b5df94817340 by Victor Stinner (Louie Lu) in branch 'master': bpo-30523: Add --list-cases unittest (#2243) https://github.com/python/cpython/commit/b0c58d3c569d1b9060248e665857b5df94817340 --

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2287 ___ Python tracker ___ ___ Python-bugs-list

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: Ah something else: doctests are not fully supported. ./python -m test test_extcall --list-cases This command has not output, whereas Lib/test/test_extcall.py contains doctests. test_builtins works because it uses: def load_tests(loader, tests, pattern):

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: Yeah, Louie fixed most issues! > I concur with Julien, the result should be printed to stdout. Done by Louie. The code now uses a simple print(). > I tried: > > $ ./python -m unittest test.test_builtin --list-tests > doctest.DocTestCase.runTest >

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset a49c935cfd6b4f8ea1f750888dd9260bbf5b9980 by Victor Stinner (mlouielu) in branch 'master': bpo-30523: regrtest: Add --list-cases option (#2238) https://github.com/python/cpython/commit/a49c935cfd6b4f8ea1f750888dd9260bbf5b9980 --

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-15 Thread Louie Lu
Louie Lu added the comment: Serhiy and Victor suggest moving this option to regrtest. open a new PR 2238 addressed this. Also, because moving into regrtest, some test that used `requires` will need to pass option when using it. e.g.: $ ./python -m test test.test_curses --list-cases

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-15 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2283 ___ Python tracker ___ ___ Python-bugs-list

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The main problem is doctests. Numerous "doctest.DocTestCase.runTest" look useless and confusing. Running tests instead of listing them is bad. It is not clear why in one cases --list-tests outputs full qualified test names, while in other cases it outputs

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I concur with Julien, the result should be printed to stdout. I tried: $ ./python -m unittest test.test_builtin --list-tests doctest.DocTestCase.runTest doctest.DocTestCase.runTest doctest.DocTestCase.runTest doctest.DocTestCase.runTest

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-04 Thread STINNER Victor
STINNER Victor added the comment: I used ./python -m test Lib/test/test_threading.py --list-tests. I would like to be able to use this feature in regrtest too: ./python -m test test_threading --list-tests Sadly, this option already exists and only return test files, not test methods.

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-03 Thread Julien Palard
Julien Palard added the comment: It works in "discover" mode, I tested: ./python -m unittest discover ./Lib/unittest/test/ --list-tests and it worked. So maybe the --list-tests should be moved to _getDiscoveryArgParser? Also spotted that tests are printed on stderr, typically when the users

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How to use this feature? "./python -m unittest --list-tests" produces nothing. -- nosy: +serhiy.storchaka ___ Python tracker

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread STINNER Victor
STINNER Victor added the comment: I used testr which has a --list-tests option: http://testrepository.readthedocs.io/en/latest/MANUAL.html#listing-tests -- ___ Python tracker

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread Julien Palard
Julien Palard added the comment: If it can be of any help, pytest have a "pytest --collect-only", it may make sense to use the same option name for consistency. I also though about "--dry-run" but I still prefer --list-tests or --collect-only. -- nosy: +mdk

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread STINNER Victor
STINNER Victor added the comment: I wrote this patch because I'm trying to find which test of test_threading leaks a reference: ./python -m test -R 3:3 test_threading Usually, I modify Lib/test/test_threading.py to remove tests one by one. I "bisect" the test manually. But this process is

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread STINNER Victor
STINNER Victor added the comment: Maybe the feature already exists but I failed to find it. Since I'm suprised that nobody implements that before (in unittest), I wait for a first feedback before starting to document the new feature and to write an unit test for it. support.run_unittest()

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1961 ___ Python tracker ___ ___

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread STINNER Victor
New submission from STINNER Victor: Attached pull requests adds a --list-tests option to only display the list of test names, don't run tests. It's a first step to implement the issue #29512: "regrtest refleak: implement bisection feature". -- components: Tests messages: 294825 nosy: