Add tests for app/print_table.py (#15)

* Add tests for app/print_table.py

* Exclude app/version and app/args from coverage

* Remove app/main from coverage (just uses other modules)
This commit is contained in:
2022-07-10 18:29:55 +01:00
committed by GitHub
parent 20c5357672
commit a4bfe87941
4 changed files with 22 additions and 2 deletions

View File

@ -18,6 +18,6 @@ def generate_prefix_string(prefixes: list) -> Union[str, None]:
return None
def print_table(table_data) -> None:
def print_table(table_data) -> None: # pragma: no cover
"""Print table generated by tabulate."""
print(tabulate(table_data))