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

Fix job_spec invocation for Python run_tests

parent 1c062bdd
No related branches found
No related tags found
No related merge requests found
......@@ -396,15 +396,13 @@ class PythonLanguage(object):
environment = dict(_FORCE_ENVIRON_FOR_WRAPPERS)
return [self.config.job_spec(
['tools/run_tests/run_python.sh', config.venv_python],
None,
timeout_seconds=5*60,
environ=dict(environment.items() +
[('GRPC_PYTHON_TESTRUNNER_FILTER', suite_name)]),
shortname='%s.test.%s' % (config.venv, suite_name),
timeout_seconds=5*60)
shortname='%s.test.%s' % (config.venv, suite_name),)
for suite_name in tests_json
for config in self.pythons]
def pre_build_steps(self):
return []
......
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