STINNER Victor added the comment: > At changeset 015463176d2e2530e4f07cfbe97e41abac540a57, > test_make_distribution_owner_group() was failing on some buildbots.
The problem is that tempfile.mkdtemp() creates a directory with the group 0. Files created in this directory also have the group 0. The test uses os.getpid() to get the group identifier. The test should use os.stat(self.tmp_dir).st_gid (and st_uid) instead of os.getgid(), or the tmp_dir directory. Or the group of the temporary directory should be changed to os.getgid(). I don't know if distutils should create tarball with the group 0 or the group of the current user. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue19544> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com