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 michael.foord
Recipients michael.foord
Date 2009-05-10.23:08:13
SpamBayes Score 3.5415988e-07
Marked as misclassified No
Message-id <1241996896.1.0.356183927991.issue5989@psf.upfronthosting.co.za>
In-reply-to
Content
Actually they do - it is an obscure bug in the way the module is
specified in TestProgram that prevents this from working.

The code in parseArgs that is currently:

            if len(args) > 0:
                self.testNames = args

Should probably be:

            if len(args) > 0:
                self.testNames = args
                self.module = None

Anyway - I'll report and fix that as a separate issue. :-)
History
Date User Action Args
2009-05-10 23:08:16michael.foordsetrecipients: + michael.foord
2009-05-10 23:08:16michael.foordsetmessageid: <1241996896.1.0.356183927991.issue5989@psf.upfronthosting.co.za>
2009-05-10 23:08:15michael.foordlinkissue5989 messages
2009-05-10 23:08:13michael.foordcreate