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 7 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?

top 2 comments
sorted by: hot top controversial new old
[โ€“] bradbeattie@lemmy.ca 1 points 6 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 5 months ago

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