Something that I couldn't figure out was how to import my app so that I could test it with pytests. Isolated tests would work, but anytime I tried to import something from my app like so
from app.main import app from fastapi.testclient import TestClient client = TestClient(app) def test_root(): response =...