diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-04-25 11:36:45 -0700 |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-04-25 18:36:45 +0000 |
commit | 62dfd7d6fe11bfa0cd1d7376382c8e7b1275e38c (patch) | |
tree | f59fcebb25702acbde504865f1a483ab7ac80954 /Lib/test/test_startfile.py | |
parent | 8c3ecc6bacc8d0cd534f2b5b53ed962dd1368c7b (diff) | |
download | cpython-git-62dfd7d6fe11bfa0cd1d7376382c8e7b1275e38c.tar.gz |
bpo-35920: Windows 10 ARM32 platform support (GH-11774)
Diffstat (limited to 'Lib/test/test_startfile.py')
-rw-r--r-- | Lib/test/test_startfile.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_startfile.py b/Lib/test/test_startfile.py index f59252e97a..1a26a8025e 100644 --- a/Lib/test/test_startfile.py +++ b/Lib/test/test_startfile.py @@ -10,6 +10,7 @@ import unittest from test import support import os +import platform import sys from os import path @@ -20,6 +21,7 @@ class TestCase(unittest.TestCase): def test_nonexisting(self): self.assertRaises(OSError, startfile, "nonexisting.vbs") + @unittest.skipIf(platform.win32_is_iot(), "starting files is not supported on Windows IoT Core or nanoserver") def test_empty(self): # We need to make sure the child process starts in a directory # we're not about to delete. If we're running under -j, that |