Skip to content
18 changes: 14 additions & 4 deletions packages/google-cloud-ndb/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,20 @@ def core_deps_from_source(session):
@nox.session(python=DEFAULT_INTERPRETER)
def mypy(session):
"""Run the type checker."""

# TODO(https://github.com/googleapis/google-cloud-python/issues/16014):
# Enable mypy once this bug is fixed.
session.skip("Temporarily skip mypy. See issue 16014")
session.install(
"mypy<1.16.0",
"types-requests",
"types-protobuf",
)
session.install("-e", ".")
session.run(
"mypy",
"-p",
"google.cloud.ndb",
"--check-untyped-defs",
"--ignore-missing-imports",
*session.posargs,
)
Comment thread
chalmerlowe marked this conversation as resolved.


@nox.session(python=DEFAULT_INTERPRETER)
Expand Down
Loading