Skip to content

Commit

Permalink
Run slow model E2E CI on periodic only (pytorch#6742)
Browse files Browse the repository at this point in the history
Some model E2E are super slow. Remove DL3 and EDSR for now.

Pull Request resolved: pytorch#6742
  • Loading branch information
kirklandsign authored Nov 12, 2024
1 parent b860f8f commit 10a814e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/scripts/gather_test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def model_should_run_on_event(model: str, event: str) -> bool:
if event == "pull_request":
return model in ["mv3", "vit"]
elif event == "push":
# 'emformer_predict' is running super slow. Only run it periodically
return model not in ["emformer_predict"]
# These are super slow. Only run it periodically
return model not in ["dl3", "edsr", "emformer_predict"]
else:
return True

Expand Down

0 comments on commit 10a814e

Please sign in to comment.