pytorch / test-infra

This repository hosts code that supports the testing infrastructure for the PyTorch organization. For example, this repo hosts the logic to track disabled tests and slow tests, as well as our continuation integration jobs HUD/dashboard.
https://hud.pytorch.org/
Other
83 stars 81 forks source link

Enhance log classifier to capture multiple errors in keep-going mode #5827

Open huydhn opened 1 month ago

huydhn commented 1 month ago

This is the next task for log classifier after https://github.com/pytorch/pytorch/pull/138541#issuecomment-2433578091. One of the big limit of the log classifier is that it could only find the last failures in the log. This simply doesn't work in keep-going mode in which testing will continue even if there are failures, and will only fail at the end.

Notes to bootcampers: