@@ -146,15 +146,15 @@ def safety(session: Session) -> None:
146146 session .run ("safety" , "check" , "--full-report" , f"--file={ requirements } " )
147147
148148
149- @session (python = python_versions )
150- def mypy (session : Session ) -> None :
151- """Type-check using mypy."""
152- args = session .posargs or ["src" , "tests" , "docs/conf.py" ]
153- session .install ("." )
154- session .install ("mypy" , "pytest" , "types-requests" , "types-PyYAML" )
155- session .run ("mypy" , * args )
156- if not session .posargs :
157- session .run ("mypy" , f"--python-executable={ sys .executable } " , "noxfile.py" )
149+ # @session(python=python_versions)
150+ # def mypy(session: Session) -> None:
151+ # """Type-check using mypy."""
152+ # args = session.posargs or ["src", "tests", "docs/conf.py"]
153+ # session.install(".")
154+ # session.install("mypy", "pytest", "types-requests", "types-PyYAML")
155+ # session.run("mypy", *args)
156+ # if not session.posargs:
157+ # session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")
158158
159159
160160@session (python = python_versions )
0 commit comments