diff --git a/src/python/grpcio_tests/commands.py b/src/python/grpcio_tests/commands.py index 301a2bea23b..98b0312b404 100644 --- a/src/python/grpcio_tests/commands.py +++ b/src/python/grpcio_tests/commands.py @@ -188,6 +188,7 @@ class TestGevent(setuptools.Command): 'unit._cython._channel_test.ChannelTest.test_negative_deadline_connectivity', # TODO(https://github.com/grpc/grpc/issues/15411) enable this test 'unit._local_credentials_test.LocalCredentialsTest', + 'testing._time_test.StrictRealTimeTest', ) BANNED_WINDOWS_TESTS = ( # TODO(https://github.com/grpc/grpc/pull/15411) enable this test diff --git a/tools/run_tests/helper_scripts/build_python.sh b/tools/run_tests/helper_scripts/build_python.sh index 87c16a2ec4f..32cf2325769 100755 --- a/tools/run_tests/helper_scripts/build_python.sh +++ b/tools/run_tests/helper_scripts/build_python.sh @@ -166,7 +166,7 @@ pip_install_dir() { } case "$VENV" in - *py35_gevent*) + *py36_gevent*) # TODO(https://github.com/grpc/grpc/issues/15411) unpin this $VENV_PYTHON -m pip install gevent==1.3.b1 ;; diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 59edaaed4ed..a27b4a96c1e 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -872,7 +872,7 @@ class PythonLanguage(object): if args.compiler == 'default': if os.name == 'nt': - return (python35_config,) + return (python36_config,) else: if args.iomgr_platform == 'asyncio': return (python36_config,) @@ -907,7 +907,7 @@ class PythonLanguage(object): python35_config, python36_config, python37_config, - # TODO: Add Python 3.8 once it's released. + python38_config, ) else: raise Exception('Compiler %s not supported.' % args.compiler)