Skip to content

Commit

Permalink
Make --skip-pass respected by test comparison mode
Browse files Browse the repository at this point in the history
Let's fix this slight oversight so that tesar report --compare
--skip-pass will be showing only problematic results.
  • Loading branch information
fernflower authored and danmyway committed Mar 20, 2024
1 parent e121f68 commit 727f46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/report/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def build_table_comparison():
if ARGS.split_planname:
planname_split_index = ARGS.split_planname

parsed_dict = parse_request_xunit()
parsed_dict = parse_request_xunit(skip_pass=ARGS.skip_pass)
result_table = PrettyTable()
uuids = list(parsed_dict.keys())
fields = ["Test Plan"] + uuids
Expand Down

0 comments on commit 727f46b

Please sign in to comment.