Merge pull request #1584 from ctiller/shortname-for-the-snake

Set shortname for Python tests
pull/1586/head
Masood Malekghassemi 10 years ago
commit 28d78aad91
  1. 8
      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

Loading…
Cancel
Save