Skip to content
Snippets Groups Projects
Commit a0804ef0 authored by Masood Malekghassemi's avatar Masood Malekghassemi
Browse files

Fix test runner failures for Python on Windows

parent 93904c0d
No related branches found
No related tags found
No related merge requests found
...@@ -435,8 +435,8 @@ class PythonLanguage(object): ...@@ -435,8 +435,8 @@ class PythonLanguage(object):
return [self.config.job_spec( return [self.config.job_spec(
config.run, config.run,
timeout_seconds=5*60, timeout_seconds=5*60,
environ=dict(environment.items() + 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),) shortname='%s.test.%s' % (config.name, suite_name),)
for suite_name in tests_json for suite_name in tests_json
for config in self.pythons] for config in self.pythons]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment