Mousius commented on code in PR #11569:
URL: https://github.com/apache/tvm/pull/11569#discussion_r891477683
##########
tests/scripts/github_tvmbot.py:
##########
@@ -417,11 +433,10 @@ def author(self) -> str:
return self.raw["author"]["login"]
def find_failed_ci_jobs(self) -> List[CIJob]:
- # NEUTRAL is GitHub Action's way of saying cancelled
return [
job
for job in self.ci_jobs()
- if job["status"] not in {"SUCCESS", "SUCCESSFUL", "SKIPPED"}
+ if job["status"] not in {"SUCCESS", "SUCCESSFUL", "SKIPPED",
"NEUTRAL"}
Review Comment:
Do we want cancelled jobs (`NEUTRAL`) to be considered a success?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]