"""
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()