14 lines
241 B
Python
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()
|