Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Nov 14, 2023
1 parent ac01ffb commit a5600f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def _task_is_ready(self, task):
# We check the failed tasks list because some tasks are permitted to
# fail if all of their dependencies specify can_fail = True
for dep in task.depends_on:
if dep.id not in self.state.finished or dep.id not in self.state.failed:
if dep.id not in self.state.finished and dep.id not in self.state.failed:
return False

return True
Expand Down

0 comments on commit a5600f5

Please sign in to comment.