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 vstinner
Recipients martin.panter, serhiy.storchaka, vstinner
Date 2017-06-01.19:39:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496345954.5.0.308373538443.issue30540@psf.upfronthosting.co.za>
In-reply-to
Content
Attached pull request adds the --matchfile option to regrtest.
    
* Add a new option taking a filename to get a list of test names to filter tests.
* support.match_tests becomes a list.
* Modify run_unittest() to accept to match the whole test identifier, not just a part of a test identifier.
   
For example, the following command only runs test_default_timeout() of the BarrierTests class of test_threading:
    
$ ./python -m test -v test_threading -m test.test_threading.BarrierTests.test_default_timeout
History
Date User Action Args
2017-06-01 19:39:14vstinnersetrecipients: + vstinner, martin.panter, serhiy.storchaka
2017-06-01 19:39:14vstinnersetmessageid: <1496345954.5.0.308373538443.issue30540@psf.upfronthosting.co.za>
2017-06-01 19:39:14vstinnerlinkissue30540 messages
2017-06-01 19:39:14vstinnercreate