From 4a0b6f70f62baef9eb02b5a1ea4748c57d442d99 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 10 Aug 2013 20:58:59 -0400 Subject: [PATCH] Issue #15301: skip new test method so Windows builtbots stop failing. --- Lib/test/test_os.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 13ff18f3476..ea2949a3778 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -867,6 +867,7 @@ def test_exist_ok_existing_directory(self): os.makedirs(path, mode=mode, exist_ok=True) os.umask(old_mask) + @unittest.skipUnless(hasattr(os, 'chown'), 'test needs os.chown') def test_chown_uid_gid_arguments_must_be_index(self): stat = os.stat(support.TESTFN) uid = stat.st_uid