Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/scripts/gather_test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def model_should_run_on_event(model: str, event: str) -> bool:
We put higher priority and fast models to pull request and rest to push.
"""
if event == "pull_request":
return model in ["mv3", "vit", "qwen2_5"] # TODO: remove, just to test the ci
return model in ["mv3", "vit"]
elif event == "push":
# These are super slow. Only run it periodically
return model not in ["dl3", "edsr", "emformer_predict"]
Expand Down
Loading