aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-13 14:46:45 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-13 14:47:47 -0700
commit830202577046d8c3e3059164ca64da04a3d84716 (patch)
tree14fdfcb262fdf9d8b22febd2eadbebdeb737b6e5 /tools
parent0fff02c3ba5e2050d079bcb712fec3c99c03d22a (diff)
Set shortname for Python tests
This avoids all tests showing up as run_python.sh.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py8
1 files 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