From 6a8fa336926e02cfca1d0d7fe3ab8ab5f26d9a8d Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Mon, 10 Aug 2020 13:54:11 -0700 Subject: [PATCH] Restrict gevent test on Windows to run on 3.6 --- tools/run_tests/run_tests.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 2ec9ba06144..72e3e2a7de6 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -862,7 +862,12 @@ class PythonLanguage(object): if args.compiler == 'default': if os.name == 'nt': - return (python38_config,) + if args.iomgr_platform == 'gevent': + # TODO(https://github.com/grpc/grpc/issues/23784) allow + # gevent to run on later version once issue solved. + return (python36_config,) + else: + return (python38_config,) else: if args.iomgr_platform == 'asyncio': return (python36_config, python38_config)