ignore runner, dont really need tests there

This commit is contained in:
Tyrel Souza 2021-11-04 23:31:48 -04:00
parent 7cba3615c8
commit e1b8735bdd
2 changed files with 1 additions and 3 deletions

View File

@ -5,3 +5,4 @@ directory = coverage_html_report
show_missing = True
omit =
tasks*
cli.py

3
cli.py
View File

@ -4,7 +4,6 @@ from rich import print
import httpx
import os
def main():
if not os.environ.get("GITHUB_TOKEN"):
raise Exception("Please set GITHUB_TOKEN")
@ -17,7 +16,5 @@ def main():
except httpx.HTTPStatusError as e:
print(e)
if __name__ == "__main__":
main()