From f959c128280b41d12b2bf7256806230cd6a4ce76 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Fri, 14 Aug 2020 11:19:20 -0700 Subject: [PATCH] Add 3.7 back to macOS and Linux test suite --- tools/run_tests/run_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 72e3e2a7de6..60db54d5e88 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -877,12 +877,14 @@ class PythonLanguage(object): # tested. return ( python27_config, + python37_config, python38_config, ) else: return ( python27_config, python35_config, + python37_config, python38_config, ) elif args.compiler == 'python2.7':