Message 179305 - Python tracker
Message179305
| Author | chris.jerdonek |
|---|---|
| Recipients | brett.cannon, chris.jerdonek, eric.araujo, ezio.melotti, python-dev, r.david.murray, serhiy.storchaka, terry.reedy, zach.ware |
| Date | 2013-01-08.02:11:59 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1357611119.31.0.229550288946.issue16748@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
> >>> import test.test_xxx as t; t.test_main() As long as the module has "import unittest", you could also do the following, which has just 5 more characters :) >>> import test.test_xxx as t; t.unittest.main(t) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-01-08 02:11:59 | chris.jerdonek | set | recipients: + chris.jerdonek, brett.cannon, terry.reedy, ezio.melotti, eric.araujo, r.david.murray, python-dev, zach.ware, serhiy.storchaka |
| 2013-01-08 02:11:59 | chris.jerdonek | set | messageid: <1357611119.31.0.229550288946.issue16748@psf.upfronthosting.co.za> |
| 2013-01-08 02:11:59 | chris.jerdonek | link | issue16748 messages |
| 2013-01-08 02:11:59 | chris.jerdonek | create | |