Skip to content

Commit

Permalink
disable test coverage for __main__
Browse files Browse the repository at this point in the history
  • Loading branch information
s-allius committed Dec 22, 2024
1 parent 84dfd17 commit d4ecbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,5 @@ def main(): # pragma: no cover
logging.info(f'Finally, exit Server "{serv_name}"')


if __name__ == "__main__":
if __name__ == "__main__": # pragma: no cover
main()

0 comments on commit d4ecbfe

Please sign in to comment.