From 830202577046d8c3e3059164ca64da04a3d84716 Mon Sep 17 00:00:00 2001 From: Craig Tiller <ctiller@google.com> Date: Wed, 13 May 2015 14:46:45 -0700 Subject: [PATCH] Set shortname for Python tests This avoids all tests showing up as run_python.sh. --- tools/run_tests/run_tests.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 6d3f6ca1f6..7150ebb553 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -184,10 +184,14 @@ class PythonLanguage(object): def test_specs(self, config, travis): modules = [config.job_spec(['tools/run_tests/run_python.sh', '-m', - test['module']], None) + test['module']], + None, + shortname=test['module']) for test in self._tests if 'module' in test] files = [config.job_spec(['tools/run_tests/run_python.sh', - test['file']], None) + test['file']], + None, + shortname=test['file']) for test in self._tests if 'file' in test] return files + modules -- GitLab