Files
httprunner/httprunner/__main__.py
2019-12-20 15:50:35 +08:00

12 lines
192 B
Python

import sys
import sentry_sdk
from httprunner.cli import main
sentry_sdk.init("https://cc6dd86fbe9f4e7fbd95248cfcff114d@sentry.io/1862849")
if __name__ == "__main__":
sys.exit(main())