Skip to content

Commit 8e7ff6a

Browse files
hliu0DinoV
authored andcommitted
Skip zoneinfo tests on VxWorks (#13535)
1 parent a1ffad0 commit 8e7ff6a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Lib/test/datetimetester.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5780,6 +5780,8 @@ class ZoneInfoTest(unittest.TestCase):
57805780
zonename = 'America/New_York'
57815781

57825782
def setUp(self):
5783+
if sys.platform == "vxworks":
5784+
self.skipTest("Skipping zoneinfo tests on VxWorks")
57835785
if sys.platform == "win32":
57845786
self.skipTest("Skipping zoneinfo tests on Windows")
57855787
try:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Port test_datetime to VxWorks: skip zoneinfo tests on VxWorks

0 commit comments

Comments
 (0)