Update Python default test suite in run_tests.py

pull/23692/head
Lidi Zheng 4 years ago
parent 86aa3579df
commit e504cf71ff
  1. 10
      tools/run_tests/run_tests.py

@ -862,25 +862,23 @@ class PythonLanguage(object):
if args.compiler == 'default': if args.compiler == 'default':
if os.name == 'nt': if os.name == 'nt':
return (python36_config,) return (python38_config,)
else: else:
if args.iomgr_platform == 'asyncio': if args.iomgr_platform == 'asyncio':
return (python36_config,) return (python36_config, python38_config)
elif os.uname()[0] == 'Darwin': elif os.uname()[0] == 'Darwin':
# NOTE(rbellevi): Testing takes significantly longer on # NOTE(rbellevi): Testing takes significantly longer on
# MacOS, so we restrict the number of interpreter versions # MacOS, so we restrict the number of interpreter versions
# tested. # tested.
return ( return (
python27_config, python27_config,
python36_config, python38_config,
python37_config,
) )
else: else:
return ( return (
python27_config, python27_config,
python35_config, python35_config,
python36_config, python38_config,
python37_config,
) )
elif args.compiler == 'python2.7': elif args.compiler == 'python2.7':
return (python27_config,) return (python27_config,)

Loading…
Cancel
Save