From c303cfdb8a1e23faf677262d7bc14c6ef6b2251a Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 27 Nov 2013 08:57:51 +0200 Subject: Skip test_find_mac on Windows (issue #19804). This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. --- Lib/test/test_uuid.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index 0a47a91..072734e 100644 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -358,6 +358,7 @@ class TestUUID(unittest.TestCase): self.assertEqual(node1, node2) + @unittest.skipUnless(os.name == 'posix', 'requires Posix') def test_find_mac(self): data = '''\ -- cgit v0.12