diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-09-24 13:43:43 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-09-24 13:43:43 (GMT) |
commit | 0151b8eddada4062b9efc18fffe87956fd90db09 (patch) | |
tree | 03112da4d8342e602292226d4f5773c29c88e8e4 /Lib/test/test_os.py | |
parent | 94622b001323de92bd14e5dcd25ea97f73227cbc (diff) | |
download | cpython-0151b8eddada4062b9efc18fffe87956fd90db09.zip cpython-0151b8eddada4062b9efc18fffe87956fd90db09.tar.gz cpython-0151b8eddada4062b9efc18fffe87956fd90db09.tar.bz2 |
LoginTests fails on a number of buildbots with different errors. Skip
it for now until a buildbot-safe solution comes up.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 5509f1f..d73bff2 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): |