test(integration): allow unmanaged response ids and serve fal h3 video bytes without auth

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
kerry 2026-09-22 01:05:48 +00:00
parent c798ef6d03
commit 1dacb03ad9
2 changed files with 4 additions and 0 deletions

View file

@ -76,6 +76,9 @@ def test_fal_h3_video_create_uses_canonical_body_and_status_path(gateway: Gatewa
request_id: Final = "fal-h3-req-" + uuid.uuid4().hex
def respond(request: Request) -> Reply:
if request.target == f"/files/{request_id}.mp4":
assert request.method == "GET"
return Reply(body=_MP4, content_type="video/mp4")
assert request.headers["authorization"] == "Key synthetic-fal-key"
if request.method == "POST":
assert request.target == f"/{_H3_MODEL}"

View file

@ -5,6 +5,7 @@ general_settings:
store_model_in_db: true
disable_spend_logs: false
proxy_batch_write_at: 1
allow_unmanaged_response_ids: true
litellm_settings:
enable_redis_auth_cache: true
cache: true