Skip to content

Commit e1d4919

Browse files
committed
Disable coverage on test endpoint
Signed-off-by: Federico Busetti <[email protected]>
1 parent bd181c9 commit e1d4919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http_app/routes/user_registered_hook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
@router.post("/")
9-
async def user_registered(request: Request):
9+
async def user_registered(request: Request): # pragma: no cover
1010
# Here we could check the email and add staff metadata to the identity
1111
logging.info("User registered", extra={"body": await request.json()})
1212
return {"user_registered": "OK"}

0 commit comments

Comments
 (0)