Skip to content

Commit b74b8c0

Browse files
committed
add placeholder for lint_setup_py
1 parent 1fa67b9 commit b74b8c0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

packages/gapic-generator/noxfile.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,9 +718,9 @@ def lint(session):
718718
serious code quality issues.
719719
"""
720720

721+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16186):
721722
# SKIP: This session was not enforced in the standalone (split) repo
722723
# and is disabled here to ensure a "move-only" migration.
723-
# See: https://github.com/googleapis/google-cloud-python/issues/16186
724724
session.skip(
725725
"Linting was not enforced in the split repo. "
726726
"Skipping now to avoid changing code during migration. See Issue #16186"
@@ -746,6 +746,14 @@ def lint(session):
746746
)
747747

748748

749+
@nox.session(python=NEWEST_PYTHON)
750+
def lint_setup_py(session):
751+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16186):
752+
# SKIP: This session was not enforced in the standalone (split) repo
753+
# and is disabled here to ensure a "move-only" migration.
754+
session.skip("Skipping now to avoid changing code during migration. See Issue #16186")
755+
756+
749757
@nox.session(python="3.10")
750758
def blacken(session):
751759
"""Run ruff format.

0 commit comments

Comments
 (0)