diff options
| author | Scott Gasch <[email protected]> | 2022-02-03 15:42:44 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-03 15:42:44 -0800 |
| commit | 65983ec2e03c97ca44e6374b226f796413bdc637 (patch) | |
| tree | 938931ca37cbbd0aae427cb61bc5f2563ed7d74e /tests/parallelize_itest.py | |
| parent | f135ec7ae3d7ca347d7489eb28d30b5db98f49de (diff) | |
Make the parallelize intergration test short enough to run at
checkin time and enable it.
Diffstat (limited to 'tests/parallelize_itest.py')
| -rwxr-xr-x | tests/parallelize_itest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/parallelize_itest.py b/tests/parallelize_itest.py index 6ac9538..d09e9f3 100755 --- a/tests/parallelize_itest.py +++ b/tests/parallelize_itest.py @@ -3,9 +3,9 @@ import sys import bootstrap -import parallelize as p import decorator_utils import executors +import parallelize as p import smart_future @@ -60,7 +60,7 @@ def test_process_parallelization() -> None: @decorator_utils.timed def test_remote_parallelization() -> None: results = [] - for _ in range(50): + for _ in range(10): results.append(compute_factorial_remote(_)) for result in smart_future.wait_any(results): print(result) |
