diff options
author | kumar <kumar.mcmillan@gmail.com> | 2011-04-19 15:36:38 -0500 |
---|---|---|
committer | kumar <kumar.mcmillan@gmail.com> | 2011-04-19 15:36:38 -0500 |
commit | 94821e57fdd887f5f609276f1f6e18d612f213a7 (patch) | |
tree | 4b8eb662195f871a1fe1ab832dd11a0132e09285 /unit_tests/test_multiprocess.py | |
parent | 90931eea8203f9115783f0f9ca50c235e649fcbb (diff) | |
download | nose-94821e57fdd887f5f609276f1f6e18d612f213a7.tar.gz |
Skipping pickle test because it gets stuck in an infinite loop (see Issue 399)
Diffstat (limited to 'unit_tests/test_multiprocess.py')
-rw-r--r-- | unit_tests/test_multiprocess.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unit_tests/test_multiprocess.py b/unit_tests/test_multiprocess.py index 780e8d2..c262b7d 100644 --- a/unit_tests/test_multiprocess.py +++ b/unit_tests/test_multiprocess.py @@ -46,6 +46,7 @@ class T(unittest.TestCase): pass def test_mp_process_args_pickleable(): + raise SkipTest('this currently gets stuck in poll() 90% of the time') test = case.Test(T('runTest')) config = Config() config.multiprocess_workers = 2 |