Skip to content

Commit

Permalink
fixup! fixup! fixup! add third_party_lint to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
carmenbianca committed Jun 22, 2023
1 parent d05f4fb commit 30e8697
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/third_party_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ def main(args):
expect_failure=expect_failure,
json=args.json,
)
print(expect_failure)
print(result.returncode)
if result.returncode and not expect_failure:
total_lint_fails += 1
else:
Expand All @@ -125,7 +127,7 @@ def main(args):
expect_failure=args.expect_failure,
json=args.json,
)
if result.returncode:
if result.returncode and not args.expect_failure:
total_lint_fails += 1
return total_lint_fails

Expand Down

0 comments on commit 30e8697

Please sign in to comment.