Message179681
| Author |
brett.cannon |
| Recipients |
brett.cannon, michael.foord |
| Date |
2013年01月11日.14:43:08 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1357915388.69.0.583817209092.issue16935@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
For test discovery to work where a dependent module is optional, you end up needing to do something like what is done in http://hg.python.org/cpython/rev/15ddd683c321:
-crypt = support.import_module('crypt')
+def setUpModule():
+ # this import will raise unittest.SkipTest if _crypt doesn't exist,
+ # so it has to be done in setUpModule for test discovery to work
+ global crypt
+ crypt = support.import_module('crypt')
That's kind of ugly. It would be better if unittest recognized SkipTest at import time during test discovery |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2013年01月11日 14:43:08 | brett.cannon | set | recipients:
+ brett.cannon, michael.foord |
| 2013年01月11日 14:43:08 | brett.cannon | set | messageid: <1357915388.69.0.583817209092.issue16935@psf.upfronthosting.co.za> |
| 2013年01月11日 14:43:08 | brett.cannon | link | issue16935 messages |
| 2013年01月11日 14:43:08 | brett.cannon | create |
|