diff --git a/noxfile.py b/noxfile.py index fd4d421d..fcd8fc13 100644 --- a/noxfile.py +++ b/noxfile.py @@ -132,7 +132,7 @@ def mypy(session: Session) -> None: """Type-check using mypy.""" args = session.posargs or ["src", "tests", "docs/conf.py"] session.install(".") - session.install("mypy", "pytest") + session.install("mypy", "pytest", "sqlalchemy-stubs") session.run("mypy", *args) if not session.posargs: session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")