mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 08:59:44 +08:00
12 lines
192 B
Python
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())
|