From: Ezio Melotti Date: Wed, 8 May 2013 08:16:02 +0000 (+0300) Subject: #17877: skip test if the Olson's TZ database is missing. X-Git-Tag: v3.3.2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bcc0f1b5161adf0773ebeba77f1d7662aad4f0e;p=python #17877: skip test if the Olson's TZ database is missing. --- diff --git a/Lib/test/test_email/test_utils.py b/Lib/test/test_email/test_utils.py index 622ef3a9c9..e507dd2c03 100644 --- a/Lib/test/test_email/test_utils.py +++ b/Lib/test/test_email/test_utils.py @@ -4,6 +4,7 @@ import test.support import time import unittest import sys +import os.path class DateTimeTests(unittest.TestCase): @@ -123,6 +124,9 @@ class LocaltimeTests(unittest.TestCase): # XXX: Need a more robust test for Olson's tzdata @unittest.skipIf(sys.platform.startswith('win'), "Windows does not use Olson's TZ database") + @unittest.skipUnless(os.path.exists('/usr/share/zoneinfo') or + os.path.exists('/usr/lib/zoneinfo'), + "Can't find the Olson's TZ database") @test.support.run_with_tz('Europe/Kiev') def test_variable_tzname(self): t0 = datetime.datetime(1984, 1, 1, tzinfo=datetime.timezone.utc)