Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI Don't fail fast in test matrix (#1896)
Currently, we have fail-fast enabled (the default). Although this is generally reasonable -- if a test fails in one setting, we probably get the same failure in other settings -- it is currently an impediment. This is because we get occasional timeouts when loading models from the Hub. With fail-fast enabled, if a single setting fails because of timeouts, all other runs are cancelled, even if they would have passed. Then we need to retrigger all of them again, creating even more pressure on the Hub. With fail-fast disabled, we give those other runs a chance to pass successfully.
- Loading branch information