Skip to content

Commit

Permalink
Merge pull request #4529 from b-flo/fix_distributed_launch_timeout
Browse files Browse the repository at this point in the history
Fix distributed launch tests
  • Loading branch information
b-flo committed Jul 24, 2022
2 parents 91f1af4 + 9127163 commit 43e22bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_distributed_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def simple_func(queue):
(2, 2),
],
)
@pytest.mark.execution_timeout(4.0)
@pytest.mark.execution_timeout(10.0)
def test_worker_exits_nonzero_code_ng(nprocs, exitcode):
for combination in itertools.product(range(2), repeat=nprocs):
n_activated = sum(combination)
Expand Down Expand Up @@ -121,7 +121,7 @@ def simple_func(args):


@pytest.mark.parametrize("nprocs", [1, 2])
@pytest.mark.execution_timeout(4.0)
@pytest.mark.execution_timeout(10.0)
def test_worker_raises_exception_ng(nprocs):
for combination in itertools.product(range(2), repeat=nprocs):
n_activated = sum(combination)
Expand Down

0 comments on commit 43e22bc

Please sign in to comment.