Skip to content

Commit

Permalink
Revert "Fix wrong condition used in filter_models" (#29682)
Browse files Browse the repository at this point in the history
Revert "Fix wrong condition used in `filter_models` (#29673)"

This reverts commit 174aecd.
  • Loading branch information
ydshieh authored Mar 15, 2024
1 parent 4e98d59 commit 5011908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/tests_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ def parse_commit_message(commit_message: str) -> Dict[str, bool]:
args.output_file,
diff_with_last_commit=diff_with_last_commit,
json_output_file=args.json_output_file,
filter_models=(not (commit_flags["no_filter"] or is_main_branch)),
filter_models=(not commit_flags["no_filter"] or is_main_branch),
)
filter_tests(args.output_file, ["repo_utils"])
except Exception as e:
Expand Down

0 comments on commit 5011908

Please sign in to comment.