]> granicus.if.org Git - python/commitdiff
LoginTests fails on a number of buildbots with different errors. Skip
authorBrian Curtin <brian.curtin@gmail.com>
Fri, 24 Sep 2010 13:43:43 +0000 (13:43 +0000)
committerBrian Curtin <brian.curtin@gmail.com>
Fri, 24 Sep 2010 13:43:43 +0000 (13:43 +0000)
it for now until a buildbot-safe solution comes up.

Lib/test/test_os.py

index 5509f1fd0f40599fe4ee1ffadbdcd2c422372950..d73bff2c73dc7ddd023f91704543207589e0ab24 100644 (file)
@@ -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):