From 79080686274f87d7110c5150ee6c31de5dc3c5db Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 3 Nov 2013 21:31:18 +0200 Subject: Issue #18702: All skipped tests now reported as skipped. --- Lib/test/test_warnings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Lib/test/test_warnings.py') diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py index 464ff40d42..9f6d775c59 100644 --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -271,11 +271,10 @@ class WarnTests(BaseTest): finally: warning_tests.__file__ = filename + @unittest.skipUnless(hasattr(sys, 'argv'), 'test needs sys.argv') def test_missing_filename_main_with_argv(self): # If __file__ is not specified and the caller is __main__ and sys.argv # exists, then use sys.argv[0] as the file. - if not hasattr(sys, 'argv'): - return filename = warning_tests.__file__ module_name = warning_tests.__name__ try: -- cgit v1.2.1