Skip to content

Commit 16e5b04

Browse files
committed
tests: skip core_deps_from_source and mypy
1 parent 286a2e6 commit 16e5b04

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

packages/google-cloud-ndb/noxfile.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,3 +392,19 @@ def system(session):
392392
session.run("py.test", "--quiet", system_test_path, *session.posargs)
393393
if system_test_folder_exists:
394394
session.run("py.test", "--quiet", system_test_folder_path, *session.posargs)
395+
396+
397+
@nox.session(python=DEFAULT_INTERPRETER)
398+
def core_deps_from_source(session):
399+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16014):
400+
# Enable this test once this bug is fixed.
401+
session.skip("Temporarily skip core_deps_from_source. See issue 16014")
402+
403+
404+
@nox.session(python=DEFAULT_INTERPRETER)
405+
def mypy(session):
406+
"""Run the type checker."""
407+
408+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16014):
409+
# Enable mypy once this bug is fixed.
410+
session.skip("Temporarily skip mypy. See issue 16014")

0 commit comments

Comments
 (0)