Files
soleprint/soleprint/station/tools/tester/__main__.py
2026-08-10 03:23:30 -03:00

14 lines
241 B
Python

"""
CLI entry point for the tester tool.
Usage:
python -m tester discover
python -m tester run
python -m tester run customers # only tests matching a pattern
"""
from .cli import main
if __name__ == "__main__":
main()