Skip to content

Commit c174901

Browse files
committed
add placeholder for system test nox session
1 parent b74b8c0 commit c174901

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/gapic-generator/noxfile.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,15 @@ def format(session):
808808
*LINT_PATHS,
809809
)
810810

811+
812+
@nox.session(python=ALL_PYTHON)
813+
def system(session):
814+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16190):
815+
# Implement system test session.
816+
"""Run the system test suite (skipped for migration)."""
817+
session.skip(f"system session is not yet implemented for gapic-generator-python.")
818+
819+
811820
@nox.session(python=NEWEST_PYTHON)
812821
@nox.parametrize(
813822
"protobuf_implementation",
@@ -831,4 +840,4 @@ def core_deps_from_source(session, protobuf_implementation):
831840
"""Run all tests with core dependencies installed from source."""
832841
# TODO(https://github.com/googleapis/google-cloud-python/issues/16185):
833842
# Implement logic to install core packages directly from the mono-repo directories.
834-
session.skip("core_deps_from_source session is not yet implemented for gapic-generator-python.")
843+
session.skip("core_deps_from_source session is not yet implemented for gapic-generator-python."

0 commit comments

Comments
 (0)