From: Skip Montanaro Date: Thu, 24 Apr 2003 19:06:57 +0000 (+0000) Subject: if the test is run directly (__name__ == "__main__") don't actually require X-Git-Tag: v2.3c1~1013 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d839ecdc8133c34c024deb8474b7d4788c38b85c;p=thirdparty%2FPython%2Fcpython.git if the test is run directly (__name__ == "__main__") don't actually require particular resources --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 776341dfcc93..c61e194f57a2 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -62,6 +62,10 @@ def is_resource_enabled(resource): return use_resources is not None and resource in use_resources def requires(resource, msg=None): + # see if the caller's module is __main__ - if so, treat as if + # the resource was set + if sys._getframe().f_back.f_globals.get("__name__") == "__main__": + return if not is_resource_enabled(resource): if msg is None: msg = "Use of the `%s' resource not enabled" % resource