youtube-summarizer/backend/test_runner/__main__.py

12 lines
241 B
Python

"""
Test Runner Module Entry Point
Allows the test runner to be executed as a Python module:
python -m test_runner.cli --help
python -m test_runner run-all --coverage
"""
from .cli import main
if __name__ == "__main__":
main()