This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xiang.zhang
Recipients xiang.zhang
Date 2016-12-12.18:15:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481566513.26.0.47817718709.issue28950@psf.upfronthosting.co.za>
In-reply-to
Content
For python test command line arguments, -j is not allowed together with -T/-l (don't know why):

[cpython]$ ./python -m test -j4 -T
usage: python -m test [options] [test_name1 [test_name2 ...]]
python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
regrtest.py: error: -T and -j don't go together!
Pass -h or --help for complete help.
[cpython]$ ./python -m test -j4 -l
usage: python -m test [options] [test_name1 [test_name2 ...]]
python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
regrtest.py: error: -l and -j don't go together!
Pass -h or --help for complete help.

But -j0 which also spawns multiple progresses fails the check.
History
Date User Action Args
2016-12-12 18:15:13xiang.zhangsetrecipients: + xiang.zhang
2016-12-12 18:15:13xiang.zhangsetmessageid: <1481566513.26.0.47817718709.issue28950@psf.upfronthosting.co.za>
2016-12-12 18:15:13xiang.zhanglinkissue28950 messages
2016-12-12 18:15:13xiang.zhangcreate