ci: add continue-on-error for scheduled PR tests (#15701)

This commit is contained in:
Alison Shao
2025-12-25 13:26:14 -08:00
committed by GitHub
parent f2ccc44240
commit 4805118122
2 changed files with 125 additions and 27 deletions

View File

@@ -67,6 +67,12 @@ def parse_args():
default=None,
help="Pytest filter expression (passed to pytest -k)",
)
parser.add_argument(
"--continue-on-error",
action="store_true",
default=False,
help="Continue running remaining tests even if one fails (for CI consistency; pytest already continues by default)",
)
return parser.parse_args()