From d05521e4b5af019593938cd1201853b4c72b397c Mon Sep 17 00:00:00 2001 From: kannanjgithub <29600796+kannanjgithub@users.noreply.github.com> Date: Wed, 28 Jan 2026 12:59:18 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/python/grpcio_tests/commands.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/python/grpcio_tests/commands.py b/src/python/grpcio_tests/commands.py index 4502f1b6929ea..a6cdcc2ba967d 100644 --- a/src/python/grpcio_tests/commands.py +++ b/src/python/grpcio_tests/commands.py @@ -28,6 +28,7 @@ from setuptools.command import easy_install from setuptools.command import install from setuptools.command import test + from tests.interop import server as interop_server_lib PYTHON_STEM = os.path.dirname(os.path.abspath(__file__)) @@ -215,7 +216,9 @@ def run_server(self): from tests.interop import server sys.argv[1:] = self.args.split() - server.serve(interop_server_lib.parse_interop_server_arguments(sys.argv)) + server.serve( + interop_server_lib.parse_interop_server_arguments(sys.argv) + ) def run_client(self): # We import here to ensure that our setuptools parent has had a chance to