aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2021-12-26 15:31:26 -0800
committerGravatar MarkKoz <[email protected]>2021-12-26 15:31:26 -0800
commit8bee96bc5f5bdffd64ff2895088d593f6f3436c5 (patch)
tree804704f356f72c6240315d0e20e3d967b3a0d19a
parentAdd tests for main() (diff)
Skip coverage of if __name__ == "__main__":
-rw-r--r--snekbox/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/__main__.py b/snekbox/__main__.py
index 1a33587..eb42629 100644
--- a/snekbox/__main__.py
+++ b/snekbox/__main__.py
@@ -44,5 +44,5 @@ def main() -> None:
sys.exit(result.returncode)
-if __name__ == "__main__":
+if __name__ == "__main__": # pragma: no cover
main()