mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Skip zoneinfo tests on VxWorks (#13535)
This commit is contained in:
parent
a1ffad0719
commit
8e7ff6aba3
2 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue