
python-checkins at python
Aug 10, 2013, 5:59 PM
Post #1 of 1
(9 views)
Permalink
|
|
cpython: Issue #15301: skip new test method so Windows builtbots stop failing.
|
|
http://hg.python.org/cpython/rev/9b0e9e9812f8 changeset: 85118:9b0e9e9812f8 user: Terry Jan Reedy <tjreedy [at] udel> date: Sat Aug 10 20:58:59 2013 -0400 summary: Issue #15301: skip new test method so Windows builtbots stop failing. files: Lib/test/test_os.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -867,6 +867,7 @@ 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 -- Repository URL: http://hg.python.org/cpython
|