mirror of https://github.com/python/cpython
Skip zoneinfo tests on VxWorks (#13535)
This commit is contained in:
parent
a1ffad0719
commit
8e7ff6aba3
|
@ -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:
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Port test_datetime to VxWorks: skip zoneinfo tests on VxWorks
|
Loading…
Reference in New Issue