From d839ecdc8133c34c024deb8474b7d4788c38b85c Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Thu, 24 Apr 2003 19:06:57 +0000 Subject: if the test is run directly (__name__ == "__main__") don't actually require particular resources --- Lib/test/test_support.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 776341d..c61e194 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 -- cgit v0.12