summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_warnings.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-03 21:15:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-03 21:15:46 (GMT)
commit32e23e739f858fcf47332e437d6c4d4f14b2b697 (patch)
tree80ed9b1174783a948655f5b47c26b70f135a894d /Lib/test/test_warnings.py
parent68f518ce4a700854d3c9b0fef145b9af79883df9 (diff)
downloadcpython-32e23e739f858fcf47332e437d6c4d4f14b2b697.zip
cpython-32e23e739f858fcf47332e437d6c4d4f14b2b697.tar.gz
cpython-32e23e739f858fcf47332e437d6c4d4f14b2b697.tar.bz2
Issue #18702: All skipped tests now reported as skipped.
Diffstat (limited to 'Lib/test/test_warnings.py')
-rw-r--r--Lib/test/test_warnings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py
index e502ed8..e4850a4 100644
--- a/Lib/test/test_warnings.py
+++ b/Lib/test/test_warnings.py
@@ -259,11 +259,10 @@ class WarnTests(unittest.TestCase):
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: