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 mfitz
Recipients acgetchell, georg.brandl, kbk, mfitz, michael.foord, pupeno
Date 2009-10-03.14:48:18
SpamBayes Score 0.010231443
Marked as misclassified No
Message-id <1254581299.98.0.709700812214.issue2821@psf.upfronthosting.co.za>
In-reply-to
Content
Agreed that this is clearly not a bug.  One way to get the desired
behavior from IDLE is to move up to Python 2.7a0+ or Python 3.1.1+,
where the 'exit' parameter of unittest.main(), which when set to False,
disables the sys.exit() call.

Alternatively, in 2.5, just create your own TextTestRunner, as described
in the 2.5.2 docs:

suite = unittest.TestLoader().loadTestsFromTestCase(TestSequenceFunctions)
unittest.TextTestRunner(verbosity=2).run(suite)
History
Date User Action Args
2009-10-03 14:48:20mfitzsetrecipients: + mfitz, georg.brandl, kbk, pupeno, acgetchell, michael.foord
2009-10-03 14:48:19mfitzsetmessageid: <1254581299.98.0.709700812214.issue2821@psf.upfronthosting.co.za>
2009-10-03 14:48:18mfitzlinkissue2821 messages
2009-10-03 14:48:18mfitzcreate