Merge pull request #829 from stefanor/check-euid

Skip test_unwriteable when tests are run as root
pull/845/head
Alex Willmer 3 years ago committed by GitHub
commit 580c9d5eb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -86,6 +86,8 @@ class IsGoodTempDirTest(unittest2.TestCase):
self.assertFalse(self.func(bleh))
self.assertEquals(open(bleh).read(), 'derp')
@unittest2.skipIf(
os.geteuid() == 0, 'writes by root ignore directory permissions')
def test_unwriteable(self):
with NamedTemporaryDirectory() as temp_path:
os.chmod(temp_path, 0)

Loading…
Cancel
Save