[Python-Dev] cpython (3.3): #16919: test_crypt now works with unittest test discovery. Patch by Zachary (original) (raw)
Antoine Pitrou solipsis at pitrou.net
Fri Jan 11 08:11:00 CET 2013
- Previous message: [Python-Dev] [Python-checkins] Daily reference leaks (aef7db0d3893): sum=287
- Next message: [Python-Dev] cpython (3.3): #16919: test_crypt now works with unittest test discovery. Patch by Zachary
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Fri, 11 Jan 2013 04:20:21 +0100 (CET) ezio.melotti <python-checkins at python.org> wrote:
diff --git a/Lib/test/testcrypt.py b/Lib/test/testcrypt.py --- a/Lib/test/testcrypt.py +++ b/Lib/test/testcrypt.py @@ -1,7 +1,11 @@ from test import support import unittest -crypt = support.importmodule('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.importmodule('crypt')
Yikes. Couldn't unittest support SkipTest being raised at import instead? setUpModule is an ugly way to do this.
Regards
Antoine.
- Previous message: [Python-Dev] [Python-checkins] Daily reference leaks (aef7db0d3893): sum=287
- Next message: [Python-Dev] cpython (3.3): #16919: test_crypt now works with unittest test discovery. Patch by Zachary
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]