From: Brian Curtin Date: Fri, 24 Sep 2010 13:43:43 +0000 (+0000) Subject: LoginTests fails on a number of buildbots with different errors. Skip X-Git-Tag: v3.2a3~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0151b8eddada4062b9efc18fffe87956fd90db09;p=thirdparty%2FPython%2Fcpython.git LoginTests fails on a number of buildbots with different errors. Skip it for now until a buildbot-safe solution comes up. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 5509f1fd0f40..d73bff2c73dc 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -1202,6 +1202,9 @@ class PidTests(unittest.TestCase): self.assertEqual(int(stdout), os.getpid()) +# The introduction of this TestCase caused at least two different errors on +# *nix buildbots. Temporarily skip this to let the buildbots move along. +@unittest.skip("Skip due to platform/environment differences on *NIX buildbots") @unittest.skipUnless(hasattr(os, 'getlogin'), "test needs os.getlogin") class LoginTests(unittest.TestCase): def test_getlogin(self):