cpython (merge 3.3 -> default): Skip test_find_mac on Windows (issue #19804).
http://hg.python.org/cpython/rev/4d5c3cb08170 changeset: 87611:4d5c3cb08170 parent: 87608:ddbcb86afbdc parent: 87610:dfadce7635ce user: Serhiy Storchaka <storchaka@gmail.com> date: Wed Nov 27 08:58:13 2013 +0200 summary: Skip test_find_mac on Windows (issue #19804). This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. files: Lib/test/test_uuid.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -358,6 +358,7 @@ self.assertEqual(node1, node2) + @unittest.skipUnless(os.name == 'posix', 'requires Posix') def test_find_mac(self): data = '''\ -- Repository URL: http://hg.python.org/cpython
participants (1)
-
serhiy.storchaka