Skip to content

Commit

Permalink
fix exit status in performance test runner (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
canepat authored Mar 22, 2024
1 parent b5676b0 commit e0ca9cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perf/run_perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,9 +542,9 @@ def main(argv):
print("Performance Test completed successfully.")
return 0


#
# module as main
#
if __name__ == "__main__":
main(sys.argv)
sys.exit(0)
sys.exit(main(sys.argv))

0 comments on commit e0ca9cd

Please sign in to comment.