diff options
author | Masood Malekghassemi <atash@google.com> | 2016-12-05 20:50:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-05 20:50:21 -0800 |
commit | 52493d84c254652ca05feba1452a09655430e386 (patch) | |
tree | 04ee71aa1cc9166cecb7235227488276b7c9ad83 | |
parent | dc74a4d58b229e6dc845dec2520a2b8379bb2263 (diff) | |
parent | c4f5a2eed244dcd8191383b9830f513dd20d6d40 (diff) |
Merge pull request #8965 from soltanmm-google/let's-try-that-again
Fix test runner failures for Python on Windows
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 1544ff369d..c49ee4a6cc 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -511,7 +511,7 @@ class PythonLanguage(object): config.run, timeout_seconds=5*60, environ=dict(list(environment.items()) + - [('GRPC_PYTHON_TESTRUNNER_FILTER', suite_name)]), + [('GRPC_PYTHON_TESTRUNNER_FILTER', str(suite_name))]), shortname='%s.test.%s' % (config.name, suite_name),) for suite_name in tests_json for config in self.pythons] |