Unverified Commit 5011908e authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Revert "Fix wrong condition used in `filter_models`" (#29682)

Revert "Fix wrong condition used in `filter_models` (#29673)"

This reverts commit 174aecd0.
parent 4e98d594
......@@ -1244,7 +1244,7 @@ if __name__ == "__main__":
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:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment