Browse Source

Tweak test converage

pull/15280/head
Sebastián Ramírez 3 months ago
parent
commit
479c53611c
  1. 6
      tests/test_vibe.py

6
tests/test_vibe.py

@ -1,3 +1,5 @@
from typing import Any
import pytest
from fastapi import FastAPI
from fastapi.exceptions import FastAPIError
@ -11,5 +13,5 @@ def test_vibe_raises():
"/vibe/",
prompt="pls return json of users from database. make no mistakes",
)
async def ai_vibes(body):
pass # pragma: nocover
async def ai_vibes(body: Any): # pragma: nocover
pass

Loading…
Cancel
Save