Skip to content

Commit

Permalink
TEST: Test latest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelVaroquaux committed Jan 7, 2012
1 parent cf72f0e commit 53b6bac
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions joblib/test/test_parallel.py
Expand Up @@ -66,6 +66,14 @@ def test_simple_parallel():
Parallel(n_jobs=-1)(delayed(square)(x) for x in X))


def nested_loop():
Parallel(n_jobs=2)(delayed(square)(.01) for _ in range(2))


def test_nested_loop():
Parallel(n_jobs=2)(delayed(nested_loop)() for _ in range(2))


def test_parallel_kwargs():
""" Check the keyword argument processing of pmap.
"""
Expand Down

0 comments on commit 53b6bac

Please sign in to comment.