summaryrefslogtreecommitdiff
path: root/unit_tests
diff options
context:
space:
mode:
authorkumar <kumar.mcmillan@gmail.com>2011-05-02 15:22:23 -0500
committerkumar <kumar.mcmillan@gmail.com>2011-05-02 15:22:23 -0500
commit3a5e71e4e0914cdce1acac9d669313fac05c7a1c (patch)
treeab7d1cf1262042816b9fdad51a419ffdf86bf38b /unit_tests
parent0e2ef2befd4e35bf8488c066893d91ff15dd2ac0 (diff)
parent9c7fda3c3c0a4657aad706ab9ab297a102b10122 (diff)
downloadnose-3a5e71e4e0914cdce1acac9d669313fac05c7a1c.tar.gz
Merged with attr plugin fixes
Diffstat (limited to 'unit_tests')
-rw-r--r--unit_tests/test_multiprocess.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/unit_tests/test_multiprocess.py b/unit_tests/test_multiprocess.py
index c262b7d..aeb65e4 100644
--- a/unit_tests/test_multiprocess.py
+++ b/unit_tests/test_multiprocess.py
@@ -46,11 +46,13 @@ class T(unittest.TestCase):
pass
def test_mp_process_args_pickleable():
- raise SkipTest('this currently gets stuck in poll() 90% of the time')
+ # TODO(Kumar) this test needs to be more succint.
+ # If you start seeing it timeout then perhaps we need to skip it again.
+ # raise SkipTest('this currently gets stuck in poll() 90% of the time')
test = case.Test(T('runTest'))
config = Config()
config.multiprocess_workers = 2
- config.multiprocess_timeout = 0.5
+ config.multiprocess_timeout = 5
runner = multiprocess.MultiProcessTestRunner(
stream=_WritelnDecorator(sys.stdout),
verbosity=10,