Skip to content
Merged
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
3 changes: 3 additions & 0 deletions src/tinuous/circleci.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@
else:
raise AssertionError(f"Unhandled EventType: {run_event!r}")
for wf in workflows:
if wf.status is WorkflowStatus.NOT_RUN:
log.info("Workflow %r not run; skipping", wf.name)
continue

Check warning on line 148 in src/tinuous/circleci.py

View check run for this annotation

Codecov / codecov/patch

src/tinuous/circleci.py#L147-L148

Added lines #L147 - L148 were not covered by tests
for job in self.get_jobs(wf.id):
if job.job_number is None:
# This can happen if the job was cancelled.
Expand Down