Skip to content

Commit 10a814e

Browse files
authored
Run slow model E2E CI on periodic only (#6742)
Some model E2E are super slow. Remove DL3 and EDSR for now. Pull Request resolved: #6742
1 parent b860f8f commit 10a814e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/scripts/gather_test_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def model_should_run_on_event(model: str, event: str) -> bool:
8888
if event == "pull_request":
8989
return model in ["mv3", "vit"]
9090
elif event == "push":
91-
# 'emformer_predict' is running super slow. Only run it periodically
92-
return model not in ["emformer_predict"]
91+
# These are super slow. Only run it periodically
92+
return model not in ["dl3", "edsr", "emformer_predict"]
9393
else:
9494
return True
9595

0 commit comments

Comments
 (0)