8000 Fix DaskWorker: `AttributeError: 'tuple' object has no attribute '_run'` by adi611 · Pull Request #673 · nipype/pydra · GitHub
[go: up one dir, main page]

Skip to content

Fix DaskWorker: AttributeError: 'tuple' object has no attribute '_run' #673

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
increase timeout for test_duplicate_input_on_split_wf and test_inner_…
…outer_wf_duplicate
  • Loading branch information
adi611 authored and ghisvail committed Aug 10, 2023
commit 90e7a8fd3656f69a7c9f5930580ed4b897bd4430
4 changes: 2 additions & 2 deletions pydra/engine/tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -4826,7 +4826,7 @@ def test_graph_5(tmpdir):
exporting_graphs(wf=wf, name=name)


@pytest.mark.timeout(20)
@pytest.mark.timeout(40)
def test_duplicate_input_on_split_wf(tmpdir):
"""checking if the workflow gets stuck if it has to run two tasks with equal checksum;
This can occur when splitting on a list containing duplicate values.
Expand All @@ -4852,7 +4852,7 @@ def printer(a):
assert res[0].output.out1 == "test" and res[1].output.out1 == "test"


@pytest.mark.timeout(40)
@pytest.mark.timeout(80)
def test_inner_outer_wf_duplicate(tmpdir):
"""checking if the execution gets stuck if there is an inner and outer workflows
that run two nodes with the exact same inputs.
Expand Down
0