Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion tests/python/execution/test_distributed_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def test_diamond_dag_parallel(self, diamond_dag):
elapsed = time.monotonic() - start
assert dist_result.execution_result.succeeded == 4
# b and c run in parallel, so total should be ~0.2s, not ~0.3s
assert elapsed < 0.5
assert elapsed < 0.8


class TestDistributedExecutionResult:
Expand Down
2 changes: 1 addition & 1 deletion tests/python/execution/test_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_parallel_execution(self, diamond_dag):
elapsed = time.monotonic() - start
assert result.succeeded == 4
# Sequential would be ~0.3s, parallel b+c should be ~0.2s
assert elapsed < 0.5
assert elapsed < 0.8

def test_with_costs(self, diamond_dag):
tasks = {
Expand Down
Loading