From: Terry Jan Reedy Date: Sun, 11 Aug 2013 00:58:59 +0000 (-0400) Subject: Issue #15301: skip new test method so Windows builtbots stop failing. X-Git-Tag: v3.4.0a2~250 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a0b6f70f62baef9eb02b5a1ea4748c57d442d99;p=thirdparty%2FPython%2Fcpython.git Issue #15301: skip new test method so Windows builtbots stop failing. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 13ff18f3476b..ea2949a3778d 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -867,6 +867,7 @@ class MakedirTests(unittest.TestCase): 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