Skip zoneinfo tests on VxWorks (#13535)

This commit is contained in:
hliu0 2019-09-10 18:28:11 +08:00 committed by Dino Viehland
parent a1ffad0719
commit 8e7ff6aba3
2 changed files with 3 additions and 0 deletions

View File

@ -5780,6 +5780,8 @@ class ZoneInfoTest(unittest.TestCase):
zonename = 'America/New_York'
def setUp(self):
if sys.platform == "vxworks":
self.skipTest("Skipping zoneinfo tests on VxWorks")
if sys.platform == "win32":
self.skipTest("Skipping zoneinfo tests on Windows")
try:

View File

@ -0,0 +1 @@
Port test_datetime to VxWorks: skip zoneinfo tests on VxWorks