this post was submitted on 31 Jul 2025
6 points (100.0% liked)

Python

3579 readers
1 users here now

News and discussions about the programming language Python


founded 6 years ago
MODERATORS
 

The default approach involves using TestClient. However, I found that mocking the database, background tasks, etc., is overkill. Do you have any suggestions?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] bradbeattie@lemmy.ca 1 points 2 months ago (1 children)

If you don't want to test the round trip, have your fastapi routes call some other function and test just that function.

[โ€“] vi21@lemmy.ml 1 points 1 month ago

Do you mean moving Pydantic models as arguments of other function?