mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 08:39:45 +08:00
17 lines
385 B
Python
17 lines
385 B
Python
__version__ = "2.5.1"
|
|
__description__ = "One-stop solution for HTTP(S) testing."
|
|
|
|
__all__ = ["__version__", "__description__"]
|
|
|
|
import uuid
|
|
|
|
import sentry_sdk
|
|
|
|
sentry_sdk.init(
|
|
dsn="https://cc6dd86fbe9f4e7fbd95248cfcff114d@sentry.io/1862849",
|
|
release="httprunner@{}".format(__version__)
|
|
)
|
|
|
|
with sentry_sdk.configure_scope() as scope:
|
|
scope.set_user({"id": uuid.getnode()})
|