MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_mypy

Function test_mypy

noxfile.py:342–357  ·  view source on GitHub ↗

run the typing integration test suite

(session: nox.Session)

Source from the content-addressed store, hash-verified

340
341@nox.session(name="mypy", python="3.14")
342def test_mypy(session: nox.Session) -> None:
343 """run the typing integration test suite"""
344
345 session.install(*nox.project.dependency_groups(pyproject, "mypy"))
346
347 session.install("-e", ".")
348
349 posargs = apply_pytest_opts(
350 session,
351 "sqlalchemy",
352 ["mypy"],
353 )
354
355 cmd = ["pytest", "-m", "mypy"]
356
357 session.run(*cmd, *posargs)
358
359
360@nox.session(name="pep8", python="3.14")

Callers

nothing calls this directly

Calls 2

apply_pytest_optsFunction · 0.90
runMethod · 0.45

Tested by

no test coverage detected