Skip to content

Commit 3902f14

Browse files
committed
disable mypy in ci
1 parent 0771a2e commit 3902f14

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

noxfile.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)